Package Exports
- @afuteam/eslint-plugin-fe
- @afuteam/eslint-plugin-fe/lib/configs/base.js
- @afuteam/eslint-plugin-fe/lib/configs/js.js
- @afuteam/eslint-plugin-fe/lib/configs/react-js.js
- @afuteam/eslint-plugin-fe/lib/configs/react-ts.js
- @afuteam/eslint-plugin-fe/lib/configs/react-ts/index.js
- @afuteam/eslint-plugin-fe/lib/configs/react-ts/tsconfig.json
- @afuteam/eslint-plugin-fe/lib/configs/react.js
- @afuteam/eslint-plugin-fe/lib/configs/react16.js
- @afuteam/eslint-plugin-fe/lib/configs/ts.js
- @afuteam/eslint-plugin-fe/lib/configs/ts/index.js
- @afuteam/eslint-plugin-fe/lib/configs/ts/tsconfig.json
- @afuteam/eslint-plugin-fe/lib/configs/ts4.js
- @afuteam/eslint-plugin-fe/lib/configs/ts5.js
- @afuteam/eslint-plugin-fe/lib/configs/vue2-js.js
- @afuteam/eslint-plugin-fe/lib/configs/vue2-ts.js
- @afuteam/eslint-plugin-fe/lib/configs/vue2-ts/index.js
- @afuteam/eslint-plugin-fe/lib/configs/vue2-ts/tsconfig.json
- @afuteam/eslint-plugin-fe/lib/configs/vue2.js
- @afuteam/eslint-plugin-fe/lib/configs/vue3-js.js
- @afuteam/eslint-plugin-fe/lib/configs/vue3-ts.js
- @afuteam/eslint-plugin-fe/lib/configs/vue3-ts/index.js
- @afuteam/eslint-plugin-fe/lib/configs/vue3-ts/tsconfig.json
- @afuteam/eslint-plugin-fe/lib/configs/vue3.js
Readme
@afuteam/eslint-plugin-fe
安装
安装 ESLint 和 @afuteam/eslint-plugin-fe:
npm i eslint @afuteam/eslint-plugin-fe --save-dev.eslintrc 文件使用
在 .eslintrc 配置文件中, 引入 @afuteam/eslint-plugin-fe 插件
{
"plugins": ["@afuteam/fe"]
}然后根据项目类型, 配置对应规则
// js + react
{
"extends": [
"plugin:@afuteam/fe/react-js"
],
"plugins": ["@afuteam/fe"]
}// js + vue2
{
"extends": ["plugin:@afuteam/fe/vue2-js"],
"plugins": ["@afuteam/fe"]
}// js + vue3
{
"extends": ["plugin:@afuteam/fe/vue3-js"],
"plugins": ["@afuteam/fe"]
}// ts + react 包含js规则
{
"extends": [
"plugin:@afuteam/fe/react-ts"
],
"plugins": ["@afuteam/fe"]
}// ts + vue2 包含js规则
{
"plugins": ["@afuteam/fe"],
"extends": ["plugin:@afuteam/fe/vue2-ts"]
}// ts + vue3 包含js规则
{
"plugins": ["@afuteam/fe"],
"extends": ["plugin:@afuteam/fe/vue3-ts"]
}npx方式使用
查看当前支持的类型,列出清单
npx @afuteam/eslint-plugin-fe@latest --help=type使用
npx @afuteam/eslint-plugin-fe@latest --type=react-ts --path=src/Tips
2.0.7
- 关闭默认的
complexity; - 基于
complexity新增规则complexity-without-switchcase,需要配合@afuteam/fe的plugin使用
2.0.1
- 默认禁止lint 的行内disable注释;但支持npx方式来打开 --allowInlineConfig=true
- 忽略 min.js iconfont.js 结尾的js文件