您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

.editorconfig 344B

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