ESLint配置 for React
-
基礎(chǔ)包ESLint的安裝
- yarn add babel-eslint --dev
- yarn add eslint --dev
- yarn add eslint-plugin-react --dev
- npm install eslint -g
針對(duì)vscode的配置 (文件->首選項(xiàng)) vscode ESLint插件安裝
{
"editor.tabSize": 2,
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"files.eol": "\n",
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"files.autoSave": "onFocusChange",
"eslint.autoFixOnSave": true,
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language": "html",
"autoFix": true
},
{
"language": "vue",
"autoFix": true
}
]
}
- 將下面的內(nèi)容copy到 .eslintrc.js 文件中
module.exports={
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"extends": "eslint:recommended",
"globals": {
"$": true,
"process": true,
"__dirname": true
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"sourceType": "module",
"ecmaVersion": 7
},
"plugins": [
"react"
],
"rules": {
// off=0, warn=1, error=2, 如果是數(shù)組, 第二項(xiàng)表示參數(shù)option
"indent": [2, 2], // 控制縮進(jìn)為2
"eqeqeq": 1,// 警告使用全等
"quotes": [2, "single"], //單引號(hào)
"no-console": 0, //不禁用console
"no-debugger": 1, //警告debugger
"no-var": 2, //對(duì)var禁止
"semi": 2, //強(qiáng)制使用分號(hào)
"semi-spacing": [2, {"before": false, "after": true}], // 強(qiáng)制分號(hào)前后不允許空格
"no-irregular-whitespace": 0, //不規(guī)則的空白不允許
"no-trailing-spaces": 1, //一行結(jié)束后面有空格就發(fā)出警告
"eol-last": 0, //文件以單一的換行符結(jié)束
"no-unused-vars": [2, {"vars": "all", "args": "after-used"}], //不能有聲明后未被使用的變量或參數(shù)
"no-underscore-dangle": 0, //標(biāo)識(shí)符不能以_開(kāi)頭或結(jié)尾
"no-alert": 2, //禁止使用alert confirm prompt
"no-lone-blocks": 0, //禁止不必要的嵌套塊
"no-class-assign": 2, //禁止給類賦值
"no-cond-assign": 2, //禁止在條件表達(dá)式中使用賦值語(yǔ)句
"no-const-assign": 2, //禁止修改const聲明的變量
"no-delete-var": 2, //不能對(duì)var聲明的變量使用delete操作符
"no-dupe-keys": 2, //在創(chuàng)建對(duì)象字面量時(shí)不允許鍵重復(fù)
"no-duplicate-case": 2, //switch中的case標(biāo)簽不能重復(fù)
"no-dupe-args": 2, //函數(shù)參數(shù)不能重復(fù)
"no-empty": 2, //塊語(yǔ)句中的內(nèi)容不能為空
"no-func-assign": 2, //禁止重復(fù)的函數(shù)聲明
"no-invalid-this": 0, //禁止無(wú)效的this梗醇,只能用在構(gòu)造器屡穗,類妖碉,對(duì)象字面量
"no-redeclare": 2, //禁止重復(fù)聲明變量
"no-spaced-func": 2, //函數(shù)調(diào)用時(shí) 函數(shù)名與()之間不能有空格
"no-this-before-super": 0, //在調(diào)用super()之前不能使用this或super
"no-undef": 2, //不能有未定義的變量
"no-use-before-define": 2, //未定義前不能使用
"camelcase": 0, //強(qiáng)制駝峰法命名
"jsx-quotes": [2, "prefer-double"], //強(qiáng)制在JSX屬性(jsx-quotes)中一致使用雙引號(hào)
"react/display-name": 0, //防止在React組件定義中丟失displayName
"react/forbid-prop-types": [2, {"forbid": ["any"]}], //禁止某些propTypes
"react/jsx-boolean-value": 2, //在JSX中強(qiáng)制布爾屬性符號(hào)
"react/jsx-closing-bracket-location": 1, //在JSX中驗(yàn)證右括號(hào)位置
"react/jsx-curly-spacing": [2, {"when": "never", "children": true}], //在JSX屬性和表達(dá)式中加強(qiáng)或禁止大括號(hào)內(nèi)的空格。
"react/jsx-indent": [2,2], // 語(yǔ)法縮進(jìn)控制
"react/jsx-indent-props": [2, 2], //驗(yàn)證JSX中的props縮進(jìn)是否為2個(gè)
"react/jsx-key": 2, //在數(shù)組或迭代器中驗(yàn)證JSX具有key屬性
"react/jsx-max-props-per-line": [1, {"maximum": 1}], // 限制JSX中單行上的props的最大數(shù)量
"react/jsx-no-bind": 0, //JSX中不允許使用箭頭函數(shù)和bind
"react/jsx-no-duplicate-props": 2, //防止在JSX中重復(fù)的props
"react/jsx-no-literals": 0, //防止使用未包裝的JSX字符串
"react/jsx-no-undef": 1, //在JSX中禁止未聲明的變量
"react/jsx-pascal-case": 0, //為用戶定義的JSX組件強(qiáng)制使用PascalCase
"react/jsx-sort-props": 2, //強(qiáng)化props按字母排序
"react/jsx-uses-react": 1, //防止反應(yīng)被錯(cuò)誤地標(biāo)記為未使用
"react/jsx-uses-vars": 2, //防止在JSX中使用的變量被錯(cuò)誤地標(biāo)記為未使用
"react/no-danger": 0, //防止使用危險(xiǎn)的JSX屬性
"react/no-did-mount-set-state": 0, //防止在componentDidMount中使用setState
"react/no-did-update-set-state": 1, //防止在componentDidUpdate中使用setState
"react/no-direct-mutation-state": 2, //防止this.state的直接變異
"react/no-multi-comp": 2, //防止每個(gè)文件有多個(gè)組件定義
"react/no-set-state": 0, //防止使用setState
"react/no-unknown-property": 2, //防止使用未知的DOM屬性
"react/prefer-es6-class": 2, //為React組件強(qiáng)制執(zhí)行ES5或ES6類
"react/prop-types": 0, //防止在React組件定義中丟失props驗(yàn)證
"react/react-in-jsx-scope": 2, //使用JSX時(shí)防止丟失React
"react/self-closing-comp": 0, //防止沒(méi)有children的組件的額外結(jié)束標(biāo)簽
"react/sort-comp": 2, //強(qiáng)制組件方法順序
"no-extra-boolean-cast": 0, //禁止不必要的bool轉(zhuǎn)換
"react/no-array-index-key": 0, //防止在數(shù)組中遍歷中使用數(shù)組key做索引
"react/no-deprecated": 1, //不使用棄用的方法
"react/jsx-equals-spacing": 2, //在JSX屬性中強(qiáng)制或禁止等號(hào)周圍的空格
"no-unreachable": 1, //不能有無(wú)法執(zhí)行的代碼
"comma-dangle": ["error", "always"], //對(duì)象字面量項(xiàng)尾必須有逗號(hào)
"no-mixed-spaces-and-tabs": 0, //禁止混用tab和空格
"prefer-arrow-callback": 0, //比較喜歡箭頭回調(diào)
"arrow-parens": 0, //箭頭函數(shù)用小括號(hào)括起來(lái)
"arrow-spacing": 0, //=>的前/后括號(hào)
"prefer-const": ["error", {
"destructuring": "all"
}],
"prefer-destructuring": ["error", {
"VariableDeclarator": {
"array": false,
"object": true
},
"AssignmentExpression": {
"array": false,
"object": false
}
}, {
"enforceForRenamedProperties": false
}],
"use-isnan": 2,//禁止比較時(shí)使用NaN审轮,只能用isNaN()
},
"settings": {
"import/ignore": [
"node_modules"
]
}
}
- 配置參數(shù)
rules: {
"規(guī)則名": [規(guī)則值, 規(guī)則配置]
}
- 規(guī)則值
"off"或者0 //關(guān)閉規(guī)則關(guān)閉
"warn"或者1 //在打開(kāi)的規(guī)則作為警告(不影響退出代碼)
"error"或者2 //把規(guī)則作為一個(gè)錯(cuò)誤(退出代碼觸發(fā)時(shí)為1)