1 Star 0 Fork 4

Evil/React-antd-Admin

forked from support/React-antd-Admin 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 1016 Bytes
一键复制 编辑 原始数据 按行查看 历史
冯凯超 提交于 2022-07-12 11:20 . chore: eslint
module.exports = {
env: {
browser: true,
node: true,
es6: true,
},
extends: ['react-app', 'react-app/jest'],
globals: {
$: true,
_: true,
React: 'readonly',
},
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
ecmaFeatures: {
jsx: true,
}
},
plugins: ['react'],
// "off" 或 0 - 关闭规则
// "warn" 或 1 - 开启规则,使用警告级别的错误:warn (不会导致程序退出)
// "error" 或 2 - 开启规则,使用错误级别的错误:error (当被触发的时候,程序会退出)
rules: {
'no-console': 'off',
'no-debugger': 'off',
"no-var": "warn",
"key-spacing": ["off", { "beforeColon": false, "afterColon": true }],
"no-constant-condition": "off",
"complexity": [
"error",
{
"max": 20
}
]
},
ignorePatterns: ['src/', 'mock/'],
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/evil_gitee/react-admin.git
[email protected]:evil_gitee/react-admin.git
evil_gitee
react-admin
React-antd-Admin
master

搜索帮助