Update .editorconfig (#4918)

Add a few more settings to avoid issues with manual edits
This commit is contained in:
Marc Bernard 2021-08-28 11:48:23 -04:00 committed by GitHub
parent 0a3b4be16b
commit df8d69526d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,10 +5,18 @@ root = true
# 1 space indentation for xml files # 1 space indentation for xml files
[*.xml] [*.xml]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space indent_style = space
indent_size = 1 indent_size = 1
# match the format used by abapGit # match the format used by abapGit
[*.abap] [*.{abap,js,json,html,css}]
charset = utf-8 charset = utf-8
end_of_line = lf end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_size = 2
indent_style = space