.editorconfig 469 B

123456789101112131415161718192021222324252627
  1. # EditorConfig helps developers define and maintain consistent
  2. # coding styles between different editors and IDEs
  3. # https://editorconfig.org
  4. root = true
  5. [*]
  6. charset = utf-8
  7. end_of_line = lf
  8. insert_final_newline = true
  9. trim_trailing_whitespace = true
  10. [*.{coffee,js,json}]
  11. indent_style = space
  12. indent_size = 4
  13. [*.{pug,jade}]
  14. indent_style = space
  15. indent_size = 4
  16. [*.{styl,css}]
  17. indent_style = space
  18. indent_size = 4
  19. [*.{html,md}]
  20. indent_style = space
  21. indent_size = 4