.editorconfig 375 B

123456789101112131415161718192021222324252627282930
  1. # http://EditorConfig.org
  2. [*]
  3. charset = utf-8
  4. end_of_line = lf
  5. insert_final_newline = true
  6. trim_trailing_whitespace = true
  7. [*.{css,scss}]
  8. indent_style = tab
  9. [*.{html,php,phtml}]
  10. indent_style = tab
  11. [*.js]
  12. indent_style = tab
  13. [*.md]
  14. indent_size = 4
  15. indent_style = tab
  16. [*.xml]
  17. indent_style = tab
  18. [*.yml]
  19. indent_size = 2
  20. indent_style = space
  21. [Makefile]
  22. indent_style = tab