.editorconfig 452 B

12345678910111213141516171819202122232425262728293031
  1. # https://EditorConfig.org
  2. [*]
  3. charset = utf-8
  4. end_of_line = lf
  5. insert_final_newline = true
  6. trim_trailing_whitespace = true
  7. [*.{css,js,json,sql}]
  8. indent_style = tab
  9. [*.html]
  10. indent_size = 2
  11. indent_style = space
  12. [*.{markdown,md}]
  13. indent_size = 4
  14. indent_style = space
  15. max_line_length = off
  16. trim_trailing_whitespace = false
  17. [*.php]
  18. indent_size = 4
  19. indent_style = space
  20. [*.{yaml,yml}]
  21. indent_size = 2
  22. indent_style = space
  23. [*.xml]
  24. indent_style = tab