.editorconfig 560 B

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