.editorconfig 473 B

12345678910111213141516171819202122232425262728293031
  1. # EditorConfig is awesome: https://EditorConfig.org
  2. root = true
  3. [*]
  4. end_of_line = lf
  5. insert_final_newline = true
  6. indent_style = space
  7. indent_size = 4
  8. tab_width = 4
  9. charset = utf-8
  10. trim_trailing_whitespace = true
  11. [*.html]
  12. trim_trailing_whitespace = false
  13. [*.md]
  14. trim_trailing_whitespace = false
  15. [*.py]
  16. trim_trailing_whitespace = false
  17. [*.sh]
  18. trim_trailing_whitespace = false
  19. [*.{txt,rst}]
  20. trim_trailing_whitespace = false
  21. [*.{yaml,yml}]
  22. indent_size = 2
  23. tab_width = 2