-
Notifications
You must be signed in to change notification settings - Fork 8
/
.eslintrc.js
132 lines (124 loc) · 3.25 KB
/
.eslintrc.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/**
* @type {import('eslint').Linter.Config} config
*/
const eslintConfig = {
env: {
browser: true,
es2021: true,
node: true,
},
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:import/recommended',
'plugin:import/typescript',
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
'plugin:react-hooks/recommended',
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 12,
sourceType: 'module',
},
settings: {
react: {
version: 'detect',
},
'import/resolver': {
typescript: true,
node: true,
},
},
plugins: ['react', '@typescript-eslint'],
rules: {
// ========================================
// 禁用某些对象的属性
// ========================================
'no-restricted-properties': [
'error',
{ property: 'substring', message: 'Use .slice instead of .substring.' },
{ property: 'substr', message: 'Use .slice instead of .substr.' },
{
object: 'assert',
property: 'equal',
message: 'Use assert.strictEqual instead of assert.equal.',
},
{
object: 'assert',
property: 'notEqual',
message: 'Use assert.notStrictEqual instead of assert.notEqual.',
},
{
object: 'assert',
property: 'deepEqual',
message: 'Use assert.deepStrictEqual instead of assert.deepEqual.',
},
{
object: 'assert',
property: 'notDeepEqual',
message:
'Use assert.notDeepStrictEqual instead of assert.notDeepEqual.',
},
],
'react/jsx-filename-extension': [2, { extensions: ['.tsx'] }],
// 当启用新的 JSX 转换时,可以关闭下面两条规则
'react/jsx-uses-react': 'off',
'react/react-in-jsx-scope': 'off',
'react/prop-types': 'off',
'react/self-closing-comp': [
'error',
{
component: true,
html: true,
},
],
'@typescript-eslint/ban-types': [
'error',
{
extendDefaults: true,
types: {
'{}': false,
},
},
],
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
// https://styled-components.com/docs/tooling#enforce-macro-imports
'no-restricted-imports': [
'error',
{
paths: [
{
name: 'styled-components',
message: 'Please import from styled-components/macro.',
},
],
patterns: ['!styled-components/macro'],
},
],
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-member-accessibility': 'off',
'prefer-const': 'warn',
},
overrides: [
{
files: ['*.ts', '*.tsx'],
rules: {
'@typescript-eslint/explicit-module-boundary-types': ['error'],
'@typescript-eslint/explicit-member-accessibility': ['error'],
},
},
{
files: ['*.js'],
rules: {
'@typescript-eslint/no-var-requires': ['off'],
},
},
],
ignorePatterns: ['**/node_modules/**', 'dist', 'lib', '**/__snapshots__/**'],
}
module.exports = eslintConfig