.editorconfig 485 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # http://EditorConfig.org
  2. # top-most EditorConfig file
  3. root = true
  4. [*]
  5. charset = "utf8"
  6. [*.css]
  7. indent_style = space
  8. indent_size = 2
  9. trim_trailing_whitespace = true
  10. [*.html]
  11. indent_style = space
  12. indent_size = 4
  13. trim_trailing_whitespace = true
  14. [*.js]
  15. indent_style = space
  16. indent_size = 4
  17. trim_trailing_whitespace = true
  18. [*.json]
  19. indent_style = space
  20. indent_size = 4
  21. trim_trailing_whitespace = true
  22. [*.php]
  23. indent_style = space
  24. indent_size = 4
  25. trim_trailing_whitespace = true