mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 20:03:20 +08:00
36 lines
750 B
INI
36 lines
750 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
|
|
|
|
# XSLT source code must have CR LF to be deserialized correctly by SAP code
|
|
[*.xslt.source.xml]
|
|
end_of_line = crlf
|
|
|
|
# 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
|