项目须要装置的插件
"babel-eslint": "^8.0.3",
"eslint": "^4.13.1",
"eslint-plugin-react": "^7.5.1",
设置概况
下面的设置涵盖了开发者所须要的绝大部分信息,rules中的值0、1、2离别示意不开启搜检、正告、毛病。你能够看到下面有些是0,如果有须要开启搜检,能够本身修正成1或许2。
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": {
"quotes": [2, "single"], //单引号
"no-console": 0, //不禁用console
"no-debugger": 2, //禁用debugger
"no-var": 0, //对var正告
"semi": 0, //不强迫运用分号
"no-irregular-whitespace": 0, //不规则的空缺不允许
"no-trailing-spaces": 1, //一行完毕背面有空格就发出正告
"eol-last": 0, //文件以单一的换行符完毕
"no-unused-vars": [2, {"vars": "all", "args": "after-used"}], //不能有声明后未被运用的变量或参数
"no-underscore-dangle": 0, //标识符不能以_开首或末端
"no-alert": 2, //制止运用alert confirm prompt
"no-lone-blocks": 0, //制止不必要的嵌套块
"no-class-assign": 2, //制止给类赋值
"no-cond-assign": 2, //制止在前提表达式中运用赋值语句
"no-const-assign": 2, //制止修正const声明的变量
"no-delete-var": 2, //不能对var声明的变量运用delete操作符
"no-dupe-keys": 2, //在建立对象字面量时不允许键反复
"no-duplicate-case": 2, //switch中的case标签不能反复
"no-dupe-args": 2, //函数参数不能反复
"no-empty": 2, //块语句中的内容不能为空
"no-func-assign": 2, //制止反复的函数声明
"no-invalid-this": 0, //制止无效的this,只能用在组织器,类,对象字面量
"no-redeclare": 2, //制止反复声明变量
"no-spaced-func": 2, //函数挪用时 函数名与()之间不能有空格
"no-this-before-super": 0, //在挪用super()之前不能运用this或super
"no-undef": 2, //不能有未定义的变量
"no-use-before-define": 2, //未定义前不能运用
"camelcase": 0, //强迫驼峰法定名
"jsx-quotes": [2, "prefer-double"], //强迫在JSX属性(jsx-quotes)中一致运用双引号
"react/display-name": 0, //防备在React组件定义中丧失displayName
"react/forbid-prop-types": [2, {"forbid": ["any"]}], //制止某些propTypes
"react/jsx-boolean-value": 2, //在JSX中强迫布尔属性标记
"react/jsx-closing-bracket-location": 1, //在JSX中考证右括号位置
"react/jsx-curly-spacing": [2, {"when": "never", "children": true}], //在JSX属性和表达式中增强或制止大括号内的空格。
"react/jsx-indent-props": [2, 4], //考证JSX中的props缩进
"react/jsx-key": 2, //在数组或迭代器中考证JSX具有key属性
"react/jsx-max-props-per-line": [1, {"maximum": 1}], // 限定JSX中单行上的props的最大数目
"react/jsx-no-bind": 0, //JSX中不允许运用箭头函数和bind
"react/jsx-no-duplicate-props": 2, //防备在JSX中反复的props
"react/jsx-no-literals": 0, //防备运用未包装的JSX字符串
"react/jsx-no-undef": 1, //在JSX中制止未声明的变量
"react/jsx-pascal-case": 0, //为用户定义的JSX组件强迫运用PascalCase
"react/jsx-sort-props": 2, //强化props按字母排序
"react/jsx-uses-react": 1, //防备回响反映被毛病地标记为未运用
"react/jsx-uses-vars": 2, //防备在JSX中运用的变量被毛病地标记为未运用
"react/no-danger": 0, //防备运用风险的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, //防备每一个文件有多个组件定义
"react/no-set-state": 0, //防备运用setState
"react/no-unknown-property": 2, //防备运用未知的DOM属性
"react/prefer-es6-class": 2, //为React组件强迫实行ES5或ES6类
"react/prop-types": 0, //防备在React组件定义中丧失props考证
"react/react-in-jsx-scope": 2, //运用JSX时防备丧失React
"react/self-closing-comp": 0, //防备没有children的组件的分外完毕标签
"react/sort-comp": 2, //强迫组件要领递次
"no-extra-boolean-cast": 0, //制止不必要的bool转换
"react/no-array-index-key": 0, //防备在数组中遍历中运用数组key做索引
"react/no-deprecated": 1, //不运用弃用的要领
"react/jsx-equals-spacing": 2, //在JSX属性中强迫或制止等号四周的空格
"no-unreachable": 1, //不能有没法实行的代码
"comma-dangle": 2, //对象字面量项尾不能有逗号
"no-mixed-spaces-and-tabs": 0, //制止混用tab和空格
"prefer-arrow-callback": 0, //比较喜好箭头回调
"arrow-parens": 0, //箭头函数用小括号括起来
"arrow-spacing": 0 //=>的前/后括号
},
"settings": {
"import/ignore": [
"node_modules"
]
}
};
哦,老天,你还愿望看到更多的react搜检器,那就去 eslint-plugin-react 的github文档去逐步翻译吧。
某些文件封闭eslint搜检
你不老是愿望一切的文件都开启eslint搜检,那末,给零丁的js文件封闭eslint的体式格局,只须要在该文件的最顶部加上一段解释。
/*eslint-disable*/
function test() {
return true
}
给某一行js代码封闭eslint搜检
封闭全部js文件的行动有点暴力,别忧郁,你还能够只给个中某段代码封闭eslint。
// eslint-disable-next-line
alert('foo')
eslint设置文件范例
eslint设置文件范例不只有js和json,实在包含下面这些:
- .eslintrc.js
- .eslintrc.yaml
- .eslintrc.yml
- .eslintrc.json
- .eslintrc
- package.json