.editorconfig 438 B

123456789101112131415161718192021222324
  1. # EditorConfig is awesome: http://EditorConfig.org
  2. # top-most EditorConfig file
  3. root = true
  4. # Unix-style newlines with a newline ending every file
  5. [*]
  6. charset = utf-8
  7. end_of_line = lf
  8. insert_final_newline = true
  9. [*.php]
  10. indent_style = tab
  11. indent_size = 4
  12. trim_trailing_whitespace = true
  13. insert_final_newline = true
  14. [*.js]
  15. indent_style = tab
  16. [*.css]
  17. indent_style = tab
  18. [*.xml]
  19. indent_style = tab
  20. [*.md]
  21. trim_trailing_whitespace = false