QS-ESLINT-CONFIG
项目描述
基于大佬Anthony Fu的项目eslint-config进行自定义的扩展,适合自己书写的代码风格
使用说明
安装
pnpm add -D eslint @qs-coder/eslint-config
.eslintrc
配置 {
"root": true,
"extends": "@qs-coder"
}
你可以添加script到package.json
如:
{
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix"
}
}
配置 VS Code 格式化
安装 VS Code ESLint extension 之后,创建 .vscode/settings.json
{
"prettier.enable": false,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}
我个人比较乐意开启formatOnSave,你可以根据你的电脑配置来决定是否开启保存自动格式化