.editorconfig 543 B

12345678910111213141516171819202122232425262728293031323334
  1. # EditorConfig helps developers define and maintain consistent
  2. # coding styles between different editors and IDEs
  3. # editorconfig.org
  4. root = true
  5. [*]
  6. end_of_line = lf
  7. charset = utf-8
  8. trim_trailing_whitespace = true
  9. insert_final_newline = true
  10. indent_style = space
  11. indent_size = 2
  12. [*.js]
  13. indent_style = space
  14. indent_size = 2
  15. [*.hbs]
  16. insert_final_newline = false
  17. indent_style = space
  18. indent_size = 2
  19. [*.css]
  20. indent_style = space
  21. indent_size = 2
  22. [*.html]
  23. indent_style = space
  24. indent_size = 2
  25. [*.{diff,md}]
  26. trim_trailing_whitespace = false