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

12345678910111213141516171819202122232425
  1. root = true
  2. [*]
  3. charset = utf-8
  4. insert_final_newline = true
  5. trim_trailing_whitespace = true
  6. end_of_line = lf
  7. [*.md]
  8. trim_trailing_whitespace = false
  9. [*.{go,tmpl,html}]
  10. indent_style = tab
  11. indent_size = 4
  12. [*.{less,css}]
  13. indent_style = space
  14. indent_size = 4
  15. [*.{js,json,yml}]
  16. indent_style = space
  17. indent_size = 2
  18. [Makefile]
  19. indent_style = tab