.editorconfig 430 B

123456789101112131415161718192021222324252627282930313233343536
  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. [*.sh]
  17. indent_style = tab
  18. [*.svg]
  19. indent_style = tab
  20. [*.xml]
  21. indent_style = tab
  22. [*.yml]
  23. indent_size = 2
  24. indent_style = space
  25. [Makefile]
  26. indent_style = tab