.editorconfig 274 B

1234567891011121314151617181920212223
  1. # https://editorconfig.org
  2. root = true
  3. [*.{c, h, cpp, hpp}]
  4. charset = utf-8
  5. indent_style = space
  6. indent_size = 2
  7. end_of_line = lf
  8. trim_trailing_whitespace = true
  9. # Python
  10. [*.py]
  11. indent_size = 4
  12. # Python
  13. [*.yml]
  14. indent_size = 2
  15. # CMake
  16. [CMakeLists.txt]
  17. indent_size = 4