.editorconfig 403 B

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