.editorconfig 523 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. [*.php]
  19. indent_style = space
  20. indent_size = 4
  21. [*.{htm,html}]
  22. indent_style = tab
  23. indent_size = 4
  24. [*.{md,markdown}]
  25. indent_style = space
  26. indent_size = 2
  27. trim_trailing_whitespace = false
  28. [.travis.yml]
  29. indent_style = space
  30. indent_size = 4