WJ-Yuan / Notes

My Tech Notes
https://wj-yuan.github.io/Notes/
0 stars 0 forks source link

[Notes] 项目规范化 #3

Open WJ-Yuan opened 1 year ago

WJ-Yuan commented 1 year ago
  1. Eslint 配置
  2. Prettier 配置
  3. Stylelint 配置
  4. husky 配置
WJ-Yuan commented 1 year ago

EditorConfig for VS Code 插件

安装 EditorConfig for VS Code 插件后,在根目录新增 .editorconfig 配置文件,统一项目文件的缩进风格,和缩进空格数等

.editorconfig

root = true # 控制配置文件 .editorconfig 是否生效的字段
​
[**] # 匹配全部文件
indent_style = space # 缩进风格,可选space|tab
indent_size = 2 # 缩进的空格数
charset = utf-8 # 设置字符集
trim_trailing_whitespace = true # 删除一行中的前后空格
insert_final_newline = true # 设为true表示使文件以一个空白行结尾
end_of_line = lf
​
[**.md] # 匹配md文件
trim_trailing_whitespace = false