.editorconfig 448 B

1234567891011121314151617181920212223242526272829
  1. # https://editorconfig.org
  2. # this file is the top-most editorconfig file
  3. root = true
  4. # all files
  5. [*]
  6. charset = utf-8
  7. end_of_line = lf
  8. indent_style = space
  9. indent_size = 4
  10. insert_final_newline = true
  11. trim_trailing_whitespace = true
  12. # markdown files
  13. [*.md]
  14. insert_final_newline = false
  15. trim_trailing_whitespace = false
  16. # configuration files
  17. [*.toml]
  18. indent_size = 2
  19. # web files
  20. [*.{html,css,scss}]
  21. indent_size = 2
  22. [Makefile]
  23. indent_style = tab