加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 438 Bytes
一键复制 编辑 原始数据 按行查看 历史
Someone 提交于 2023-07-02 14:53 . Initial commit
module.exports = {
extends: [require.resolve('@umijs/fabric/dist/eslint')],
globals: {
ANT_DESIGN_PRO_ONLY_DO_NOT_USE_IN_YOUR_PRODUCTION: true,
page: true,
REACT_APP_ENV: true,
},
rules: {
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': ['error'],
'prefer-const': 2,
indent: [
'error',
2,
{
ignoredNodes: ['TemplateLiteral'],
},
],
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化