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 407B

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