.editorconfig 285 B

123456789101112131415161718192021
  1. # http://editorconfig.org
  2. root = true
  3. [*]
  4. charset = utf-8
  5. end_of_line = lf
  6. insert_final_newline = true
  7. trim_trailing_whitespace = true
  8. [*.{go,tmpl}]
  9. indent_style = tab
  10. indent_size = 4
  11. [*.{less,yml}]
  12. indent_style = space
  13. indent_size = 2
  14. [*.js]
  15. indent_style = space
  16. indent_size = 4