加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.js 738 Bytes
一键复制 编辑 原始数据 按行查看 历史
jQuery 提交于 2016-12-04 17:51 . undate to 4.0
module.exports = {
extends: ['eslint-config-airbnb'],
env: {
browser: true,
node: true,
mocha: true,
jest: true,
es6: true
},
parser: 'babel-eslint',
parserOptions: {
ecmaVersion: 6,
ecmaFeatures: {
jsx: true,
experimentalObjectRestSpread: true
}
},
plugins: [
'react',
'babel'
],
rules: {
'curly': [2, 'all'],
'func-names': 0,
'prefer-const': 0,
'arrow-body-style': 0,
'react/sort-comp': 0,
'react/prop-types': 0,
'react/jsx-first-prop-new-line': 0,
'import/no-unresolved': 0,
'no-param-reassign': 0,
'no-return-assign': 0,
'max-len': [2, {
'code': 120
}],
'consistent-return': 0,
'comma-dangle': 0
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化