.editorconfig 486 B

12345678910111213141516171819202122232425262728293031323334
  1. # http://editorconfig.org
  2. root = true
  3. [*]
  4. charset = utf-8
  5. end_of_line = lf
  6. insert_final_newline = true
  7. trim_trailing_whitespace = true
  8. [*.{py,rst,ini}]
  9. indent_size = 4
  10. indent_style = space
  11. [*.py]
  12. line_length=120
  13. multi_line_output=3
  14. [*.{css,html,js,json,sass,scss,yml,yaml}]
  15. indent_size = 2
  16. indent_style = space
  17. [*.md]
  18. indent_size = 4
  19. indent_style = space
  20. trim_trailing_whitespace = false
  21. [justfile]
  22. indent_size = 4
  23. indent_style = space
  24. [{Makefile,modd.conf}]
  25. indent_style = tab