Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

.editorconfig 388B

12345678910111213141516171819202122232425262728293031
  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,html}]
  11. indent_style = tab
  12. indent_size = 4
  13. [*.{less}]
  14. indent_style = space
  15. indent_size = 4
  16. [*.{yml}]
  17. indent_style = space
  18. indent_size = 2
  19. [*.js]
  20. indent_style = space
  21. indent_size = 4
  22. [Makefile]
  23. indent_style = tab