eslint
ESLint
是一个可配置的 JavaScript linter
。它可以帮助您发现并修复 JavaScript
代码中的问题。问题可以是任何问题,从潜在的运行时错误,到不遵循最佳实践,再到样式问题
配置文件
配置文件的名字有很多,版本的不同会导致不同的导出语法:
首先说明文件名的变动
8.x 版本
- .eslintrc.js
- .eslintrc.cjs
- .eslintrc.yaml
- .eslintrc.yml
- .eslintrc.json
9.x 版本
- eslint.config.js
- eslint.config.mjs
- eslint.config.cjs
8.x 版本配置
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| module.exports = { root: true, env: { node: true, browser: true, es2021: true, }, extends: [ "vue-global-api", "eslint:recommended", "plugin:vue/vue3-recommended", "@vue/eslint-config-typescript/recommended", "plugin:prettier/recommended", "@vue/eslint-config-prettier", ], rules: {}, };
|
9.x 版本配置
关于9.0
的说明,在vue 项目创建中就提到了
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| import js from "@eslint/js"; import globals from "globals"; import ts from "typescript-eslint";
import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended"; import pluginVue from "eslint-plugin-vue"; import vueTsEslintConfig from "@vue/eslint-config-typescript";
export default [ { languageOptions: { globals: globals.browser } }, js.configs.recommended, ...ts.configs.recommended, ...pluginVue.configs["flat/essential"], ...vueTsEslintConfig(), eslintPluginPrettierRecommended, { ignores: ["dist/"] }, ];
|
什么是 rules
1 2 3 4 5 6
| { "rules": { "semi": ["error", "always"], "quotes": ["error", "double"] } }
|
名称“semi”和“quotes”是 ESLint 中规则的名称。第一个值是规则的错误级别,可以是以下值之一:
"off"
或则 0
- 关闭规则
"warn"
or 1
- 显示警告 (不会影响 exit code)
"error"
or 2
- 显示错误 (exit code 会是 1)
.eslintignore
eslint
忽略规则类似如下:
1 2 3 4 5 6
| /library/build/unplugin/components.d.ts node_modules src/assets src/icons public dist
|
在package.json
配置
1 2 3 4 5
| { "scripts": { "lint:fix": "eslint {src,mock,library}/**/*.{vue,js,ts} --fix" } }
|