.editorconfig 481 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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]
  8. indent_style = tab
  9. [*.{html,php,phtml}]
  10. indent_style = tab
  11. [*.js]
  12. indent_style = tab
  13. [*.json]
  14. indent_style = tab
  15. [*.md]
  16. indent_size = 4
  17. indent_style = tab
  18. [*.neon]
  19. indent_style = tab
  20. [*.sh]
  21. indent_style = tab
  22. [*.svg]
  23. indent_style = tab
  24. [*.xml]
  25. indent_style = tab
  26. [*.yml]
  27. indent_size = 2
  28. indent_style = space
  29. [Makefile]
  30. indent_style = tab