-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.js
45 lines (44 loc) · 1.12 KB
/
eslint.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
const reactRecommended = require('eslint-plugin-react/configs/recommended');
const tsRecommended = require('@typescript-eslint/eslint-plugin').configs['recommended'];
const prettierConfig = require('eslint-config-prettier');
module.exports = [
{
files: ['**/*.{ts,tsx}'],
languageOptions: {
parser: require('@typescript-eslint/parser'),
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module',
ecmaFeatures: {
jsx: true,
},
},
},
plugins: {
'@typescript-eslint': require('@typescript-eslint/eslint-plugin'),
react: require('eslint-plugin-react'),
prettier: require('eslint-plugin-prettier'),
},
rules: {
...reactRecommended.rules,
...tsRecommended.rules,
...prettierConfig.rules,
'prettier/prettier': 'off', // 关闭prettier检查
'@typescript-eslint/no-explicit-any': 'error',
'@typescript-eslint/explicit-function-return-type': 'off',
'react/prop-types': 'off',
'@typescript-eslint/no-unused-vars': [
'error',
{
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
},
],
},
settings: {
react: {
version: 'detect',
},
},
},
];