.editorconfig 354 B

12345678910111213141516171819202122
  1. root = true
  2. [*]
  3. charset = utf-8
  4. end_of_line = lf
  5. indent_size = 4
  6. indent_style = tab
  7. insert_final_newline = true
  8. max_line_length = 120
  9. trim_trailing_whitespace = true
  10. [{*.py,SConstruct,SCsub}]
  11. indent_style = space
  12. [{*.{yml,yaml},.clang{-format,-tidy,d}}]
  13. indent_size = 2
  14. indent_style = space
  15. [{*.props,*.vcxproj}]
  16. indent_size = 2
  17. indent_style = space