.editorconfig 518 B

123456789101112131415161718192021222324252627
  1. # EditorConfig is awesome: http://EditorConfig.org
  2. # top-most EditorConfig file
  3. root = true
  4. # Unix-style newlines with a newline ending every file
  5. [*]
  6. end_of_line = lf
  7. insert_final_newline = true
  8. indent_style = space
  9. indent_size = 2
  10. [*.{js,html}]
  11. charset = utf-8
  12. end_of_line = lf
  13. indent_brace_style = 1TBS
  14. indent_size = 2
  15. indent_style = space
  16. insert_final_newline = true
  17. max_line_length = 80
  18. quote_type = auto
  19. spaces_around_operators = true
  20. trim_trailing_whitespace = true
  21. [*.md]
  22. trim_trailing_whitespace = false