# 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