加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.js 1.94 KB
一键复制 编辑 原始数据 按行查看 历史
CK 提交于 2022-02-21 13:40 . main 配置--未完成
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
extends: [
'plugin:@typescript-eslint/recommended',
// Uses eslint-config-prettier to disable ESLint rules from @typescript-eslint/eslint-plugin that would conflict with prettier
'prettier/@typescript-eslint',
// Enables eslint-plugin-prettier and eslint-config-prettier. This will display prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.
// 此行必须在最后
'plugin:prettier/recommended'
],
env: {
es6: true,
node: true
},
parserOptions: {
// 支持最新 JavaScript
ecmaVersion: 2018,
sourceType: 'module'
},
// meta: {
// hasSuggestions: true
// },
rules: {
// 如果有不适合的规则,可以在此调整
'import/extensions': ['.js', '.jsx', '.json', '.ts', '.tsx'],
// 'react/prop-types': [0],
// quotes: ['error', 'single'],
// semi: [1],
// 'react/jsx-indent': [1],
// 'no-multi-spaces': [1]
// indent: [2],
// 'react/jsx-newline': [2, { prevent: true }],
// 'no-trailing-spaces': [1],
// 'no-multiple-empty-lines': [1, { max: 1 }],
// 'space-infix-ops': [1],
// 'object-curly-spacing': [1, 'always'],
// 'comma-spacing': [1],
// 'react-hooks/rules-of-hooks': 'error',
// 'react/self-closing-comp': 1,
// 'react/jsx-closing-tag-location': 1,
// 'no-unreachable': 1,
// 'react-hooks/exhaustive-deps': 'warn'
// ...
// 'no-undef': 'off',
// 'no-restricted-globals': 'off',
// 'no-unused-vars': 'off'
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-explicit-any': 'off', //允许使用any类型
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/no-empty-interface': 'off'
},
settings: {
'import/resolver': {
node: {
paths: ['src'],
extensions: ['.js', '.jsx', '.json', '.ts', '.tsx']
}
}
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化