.editorconfig 564 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # editorconfig.org
  2. root = true
  3. [*]
  4. # Unix style files
  5. end_of_line = lf
  6. charset = utf-8
  7. trim_trailing_whitespace = true
  8. insert_final_newline = true
  9. [*.css]
  10. indent_style = tab
  11. indent_size = 4
  12. [*.js]
  13. indent_style = space
  14. indent_size = 4
  15. [*.json]
  16. indent_style = space
  17. indent_size = 4
  18. [*.jsonld]
  19. indent_style = tab
  20. indent_size = 4
  21. [*.php]
  22. indent_style = space
  23. indent_size = 4
  24. [*.{htm,html}]
  25. indent_style = tab
  26. indent_size = 4
  27. [*.{md,markdown}]
  28. indent_style = space
  29. indent_size = 2
  30. trim_trailing_whitespace = false
  31. [*.yml]
  32. indent_style = space
  33. indent_size = 2