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

12345678910111213141516171819202122232425262728293031323334
  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. [*.md]
  9. trim_trailing_whitespace = false
  10. [*.go]
  11. indent_style = tab
  12. indent_size = 8
  13. [*.{tmpl,html}]
  14. indent_style = tab
  15. indent_size = 4
  16. [*.less]
  17. indent_style = space
  18. indent_size = 4
  19. [*.{yml,json}]
  20. indent_style = space
  21. indent_size = 2
  22. [*.js]
  23. indent_style = space
  24. indent_size = 2
  25. [Makefile]
  26. indent_style = tab