加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 821 Bytes
一键复制 编辑 原始数据 按行查看 历史
const fs = require('fs')
const path = require('path')
const prettierOptions = JSON.parse(
fs.readFileSync(path.resolve(__dirname, '.prettierrc'), 'utf8')
)
module.exports = {
parser: 'babel-eslint',
extends: [
'standard',
'prettier',
'prettier/flowtype',
'prettier/react',
'prettier/standard',
'plugin:flowtype/recommended'
],
parserOptions: {
ecmaVersion: 6,
sourceType: 'module',
ecmaFeatures: {
jsx: true
}
},
rules: {
'prettier/prettier': ['error', prettierOptions],
camelcase: 0,
'new-cap': 0,
indent: [
2,
2,
{
SwitchCase: 1
}
]
},
parserOptions: {},
plugins: [
'prettier',
'flowtype'
],
env: {
mocha: true,
browser: true,
node: true,
es6: true
},
settings: {
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化