4
0

.editorconfig 564 B

1234567891011121314151617181920212223242526272829303132
  1. # EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs.
  2. # http://editorconfig.org/
  3. root = true
  4. [*]
  5. charset = utf-8
  6. end_of_line = lf
  7. indent_size = 2
  8. indent_style = space
  9. insert_final_newline = true
  10. trim_trailing_whitespace = true
  11. # BASH Files
  12. [*.sh]
  13. indent_size = 4
  14. indent_style = tab
  15. # JSON Files (Biome formatting)
  16. [*.json]
  17. indent_style = tab
  18. indent_size = 2
  19. # Steam appmanifest files (Valve ACF format)
  20. [*.acf]
  21. indent_style = tab
  22. indent_size = 4
  23. # Python
  24. [*.py]
  25. indent_style = space
  26. indent_size = 4