加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.cjs 915 Bytes
一键复制 编辑 原始数据 按行查看 历史
chndfang 提交于 2023-07-12 14:38 . Initial commit
module.exports = {
env: { node: true, browser: true, es2021: true },
extends: ['eslint:recommended', 'plugin:react/recommended', 'plugin:@typescript-eslint/recommended'],
overrides: [],
parser: '@typescript-eslint/parser',
parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
plugins: ['react', '@typescript-eslint'],
rules: {
indent: [
'error',
2,
{
SwitchCase: 1,
CallExpression: { arguments: 'off' },
ignoredNodes: ['ConditionalExpression > *', 'ObjectExpression'],
},
],
quotes: ['error', 'single'],
semi: ['error', 'always'],
'max-len': ['warn', { code: 120, ignoreComments: true, ignoreUrls: true, ignoreTemplateLiterals: true }],
'max-lines': ['warn', { max: 500, skipBlankLines: true, skipComments: true }],
'react/react-in-jsx-scope': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化