.editorconfig 394 B

12345678910111213141516171819202122232425262728
  1. # http://editorconfig.org/
  2. root = true
  3. [*]
  4. end_of_line = lf
  5. insert_final_newline = true
  6. charset = utf-8
  7. trim_trailing_whitespace = true
  8. [*.go]
  9. indent_style = tab
  10. [*.{js, jsx, ts, tsx, json, html}]
  11. indent_style = space
  12. indent_size = 4
  13. [webapp/package.json]
  14. indent_size = 2
  15. [{Makefile, *.mk}]
  16. indent_style = tab
  17. [*.md]
  18. indent_style = space
  19. indent_size = 4
  20. trim_trailing_whitespace = false