.editorconfig 321 B

123456789101112131415161718192021222324
  1. # Top-level config
  2. root = true
  3. # All files
  4. [*]
  5. charset = utf-8
  6. indent_style = space
  7. indent_size = 2
  8. end_of_line = lf
  9. insert_final_newline = true
  10. trim_trailing_whitespace = true
  11. # Markdown
  12. [*.md]
  13. trim_trailing_whitespace = false
  14. # Python
  15. [*.py]
  16. indent_size = 4
  17. # Makefiles
  18. [Makefile]
  19. indent_style = tab
  20. indent_size = 8