You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.editorconfig 337B

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