.editorconfig 314 B

12345678910111213141516171819202122
  1. root = true
  2. [*]
  3. charset = utf-8
  4. end_of_line = lf
  5. trim_trailing_whitespace = true
  6. insert_final_newline = true
  7. [*.{py,pyw}]
  8. indent_style = space
  9. indent_size = 4
  10. [*.{h,c,cxx,cpp,I,T}]
  11. indent_style = space
  12. indent_size = 2
  13. [{CMakeLists.txt,*.cmake}]
  14. indent_style = space
  15. indent_size = 2
  16. [*.bat]
  17. end_of_line = crlf