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.
 
 
 
 

23 line
514 B

  1. # 告诉EditorConfig插件,这是根文件,不用继续往上查找
  2. root = true
  3. # 匹配全部文件
  4. [*]
  5. # 设置字符集
  6. charset = utf-8
  7. # 缩进风格,可选space、tab
  8. indent_style = space
  9. # 缩进的空格数
  10. indent_size = 2
  11. # 结尾换行符,可选lf、cr、crlf
  12. end_of_line = lf
  13. # 在文件结尾插入新行
  14. insert_final_newline = true
  15. # 删除一行中的前后空格
  16. trim_trailing_whitespace = true
  17. # 匹配md结尾的文件
  18. [*.md]
  19. insert_final_newline = false
  20. trim_trailing_whitespace = false