代码拉取完成,页面将自动刷新
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module',
ecmaFeatures: {
jsx: true,
},
},
settings: {
react: {
version: 'detect',
},
},
env: {
browser: true,
amd: true,
node: true,
},
extends: [
'eslint:recommended',
'plugin:react/recommended',
// 'plugin:jsx-a11y/recommended',
'plugin:prettier/recommended', // Make sure this is always the last element in the array.
],
plugins: ['simple-import-sort', 'prettier'],
rules: {
'no-debugger': 1,
'prettier/prettier': ['error', {}, { usePrettierrc: true }],
'react/react-in-jsx-scope': 'off',
'@typescript-eslint/consistent-type-assertions': 'off', //添加这行。
// 'jsx-a11y/accessible-emoji': 'off',
// 'jsx-a11y/no-static-element-interactions': ['off'],
// 'jsx-a11y/click-events-have-key-events': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'no-use-before-define': 'off',
// 'simple-import-sort/imports': 'warn', // 引入顺序排序功能
'simple-import-sort/exports': 'error', // 导出顺序排序
//解决ts中,本身是可以有空的构造函数的误判问题 START
'no-useless-constructor': 'off',
// '@typescript-eslint/no-useless-constructor': 'error',
// 'no-unused-vars': ['error', { ignoreRestSiblings: false }],
'no-unused-vars': ['error', { argsIgnorePattern: 'slick', args: 'none' }],
'no-constant-condition': 'error', //禁止在条件中使用常量表达式
'no-dupe-args': 'error', //禁止 function 定义中出现重名参数
'no-dupe-keys': 'error', //禁止对象字面量中出现重复的 key
// 'no-unused-vars': [
// 'warn',
// {
// vars: 'all',
// args: 'after-used',
// ignoreRestSiblings: true,
// varsIgnorePattern: 'createElement',
// },
// ],
'@typescript-eslint/no-unused-vars': ['off'],
'no-empty-function': 'off',
//解决导出类型时,no-undef报错问题
'no-undef': 'off',
'import/prefer-default-export': 'off',
'no-import-assign': 'error',
// 解决eslint不认识TypeScript函数和类方法重载的问题
'no-dupe-class-members': 'off',
'no-redeclare': 'off',
'@typescript-eslint/no-dupe-class-members': 'error',
'@typescript-eslint/no-redeclare': 'error',
},
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。