.editorconfig 620 B

123456789101112131415161718192021222324252627282930313233343536
  1. [*]
  2. end_of_line = lf
  3. insert_final_newline = true
  4. trim_trailing_whitespace = true
  5. charset = utf-8
  6. [*.rs]
  7. indent_style = space
  8. indent_size = 4
  9. # line length is only supported with vim and emacs
  10. max_line_length = 100
  11. [Makefile]
  12. # Tab indentation for Makefiles
  13. indent_style = tab
  14. tab_width = 4
  15. # line length is only supported with vim and emacs
  16. max_line_length = 80
  17. [*.html]
  18. indent_style = space
  19. indent_size = 4
  20. # line length is only supported with vim and emacs
  21. max_line_length = 80
  22. [*.{md,yaml,yml,nix}]
  23. indent_style = space
  24. indent_size = 2
  25. # line length is only supported with vim and emacs
  26. max_line_length = 80