.editorconfig 682 B

12345678910111213141516171819202122232425
  1. # 修改配置后重启编辑器
  2. # 配置项文档:https://editorconfig.org/
  3. # 告知 EditorConfig 插件,当前即是根文件
  4. root = true
  5. # 适用全部文件
  6. [*]
  7. ## 设置字符集
  8. charset = utf-8
  9. ## 缩进风格 space | tab,建议 space(会自动继承给 Prettier)
  10. indent_style = space
  11. ## 缩进的空格数(会自动继承给 Prettier)
  12. indent_size = 2
  13. ## 换行符类型 lf | cr | crlf,一般都是设置为 lf
  14. end_of_line = lf
  15. ## 是否在文件末尾插入空白行
  16. insert_final_newline = true
  17. ## 是否删除一行中的前后空格
  18. trim_trailing_whitespace = true
  19. # 适用 .md 文件
  20. [*.md]
  21. insert_final_newline = false
  22. trim_trailing_whitespace = false