abapGit/.editorconfig
Marc Bernard e6c67c4146
Add yaml and bash to editorconfig (#6015)
Co-authored-by: Lars Hvam <larshp@hotmail.com>
2023-01-30 16:19:12 +01:00

32 lines
634 B
INI

# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
# 1 space indentation for xml files
[*.xml]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_size = 1
# match the format used by abapGit
[*.{abap,js,json,html,css}]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_size = 2
indent_style = space
# YAML and Bash Files
[*.{yml,yaml,sh}]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_size = 2
indent_style = space