.editorconfig 488 B

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