.editorconfig 663 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # http://editorconfig.org
  2. root = true
  3. [*]
  4. indent_style = space
  5. indent_size = 4
  6. insert_final_newline = true
  7. trim_trailing_whitespace = true
  8. end_of_line = lf
  9. charset = utf-8
  10. # Use 2 spaces for the HTML files
  11. [*.html]
  12. indent_size = 2
  13. # The JSON files contain newlines inconsistently
  14. [*.json]
  15. indent_size = 2
  16. insert_final_newline = ignore
  17. [**/admin/js/vendor/**]
  18. indent_style = ignore
  19. indent_size = ignore
  20. # Minified JavaScript files shouldn't be changed
  21. [**.min.js]
  22. indent_style = ignore
  23. insert_final_newline = ignore
  24. # Makefiles always use tabs for indentation
  25. [Makefile]
  26. indent_style = tab
  27. # Batch files use tabs for indentation
  28. [*.bat]
  29. indent_style = tab