-
Notifications
You must be signed in to change notification settings - Fork 15
/
eslint.config.js
266 lines (262 loc) · 8.42 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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
// 配置文档: https://eslint.nodejs.cn/
import { defineFlatConfig } from 'eslint-define-config'
import configPrettier from 'eslint-config-prettier'
import pluginPrettier from 'eslint-plugin-prettier'
import * as parserTypeScript from '@typescript-eslint/parser'
import pluginTypeScript from '@typescript-eslint/eslint-plugin'
import js from '@eslint/js'
/** @type {import('eslint-define-config').FlatESLintConfig} */
export default defineFlatConfig([
{
...js.configs.recommended,
ignores: ['src/assets/**'],
plugins: {
prettier: pluginPrettier
},
rules: {
...configPrettier.rules,
...pluginPrettier.configs.recommended.rules,
/*
* Eslint规则配置
* 配置文档: https://eslint.nodejs.cn/docs/latest/rules/
*/
// 需要 let 或 const 而不是 var
'no-var': 'error',
// 禁止在定义变量之前使用变量
'no-use-before-define': 'off',
// 声明后永远不会重新分配的变量需要 const 声明
'prefer-const': 'error',
// 禁止不规则空格
'no-irregular-whitespace': 'off',
// 禁止使用 debugger
'no-debugger': 'off',
// 禁止未使用的变量
'no-unused-vars': [
'error',
{
argsIgnorePattern: '^_',
varsIgnorePattern: '^_'
}
],
// 使用 prettier 插件
'prettier/prettier': [
'error',
{
endOfLine: 'auto'
}
]
}
},
{
files: ["**/*.?([cm])ts", "**/*.?([cm])tsx"],
languageOptions: {
parser: parserTypeScript,
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module',
jsxPragma: 'React',
ecmaFeatures: {
jsx: true
}
},
},
plugins: {
'@typescript-eslint': pluginTypeScript
},
rules: {
...pluginTypeScript.configs.recommended.rules,
/*
* TypeScript规则配置
* 配置文档: https://typescript-eslint.nodejs.cn/rules/)
*/
// 根据参数、属性和变量的默认值或初始值推断其类型
'@typescript-eslint/no-inferrable-types': 'off',
// 禁止使用自定义 ts 模块和命名空间
'@typescript-eslint/no-namespace': 'off',
// 禁止使用 any 类型
'@typescript-eslint/no-explicit-any': 'off',
// 禁止使用特定类型
'@typescript-eslint/ban-types': 'off',
// 不允许对初始化为数字、字符串或布尔值的变量或参数进行显式返回类型声明
'@typescript-eslint/explicit-function-return-type': 'off',
// 不允许在 import 语句中使用 require 语句
'@typescript-eslint/no-var-requires': 'off',
// 禁止空函数
'@typescript-eslint/no-empty-function': 'off',
// 禁止在变量定义之前使用它们
'@typescript-eslint/no-use-before-define': 'off',
// 禁止 @ts-<directive> 注释代码
'@typescript-eslint/ban-ts-comment': 'off',
// 不允许使用后缀运算符的非空断言(!)
'@typescript-eslint/no-non-null-assertion': 'off',
// 要求导出函数和类的公共类方法的显式返回和参数类型
'@typescript-eslint/explicit-module-boundary-types': 'off',
// 使用顶层 type 限定符进行导入
'@typescript-eslint/no-import-type-side-effects': 'error',
// 不允许在可选链表达式后使用非空断言
'@typescript-eslint/no-non-null-asserted-optional-chain': 'off',
// 禁止定义未使用的变量
'@typescript-eslint/no-unused-vars': [
'warn',
{
argsIgnorePattern: '^_',
varsIgnorePattern: '^_'
}
],
// 允许在导入上指定 type 关键字
'@typescript-eslint/consistent-type-imports': [
'error',
{
disallowTypeAnnotations: false,
fixStyle: 'inline-type-imports'
}
],
// 允许枚举成员的值是多种不同类型的有效 js 表达式
'@typescript-eslint/prefer-literal-enum-member': [
'error',
{
allowBitwiseExpressions: true
}
]
}
},
{
files: ['*.d.ts'],
rules: {
'eslint-comments/no-unlimited-disable': 'off',
'import/no-duplicates': 'off',
'unused-imports/no-unused-vars': 'off'
}
},
{
files: ['*.?([cm])js'],
rules: {
'@typescript-eslint/no-require-imports': 'off',
'@typescript-eslint/no-var-requires': 'off'
}
}
])
// export default {
// root: true,
// env: {
// browser: true,
// node: true,
// es6: true
// },
// settings: {
// react: {
// version: 'detect'
// }
// },
// // 指定如何解析语法
// parser: '@typescript-eslint/parser',
// // 优先级低于 parse 的语法解析配置
// parserOptions: {
// ecmaVersion: 7,
// sourceType: 'module',
// jsxPragma: 'React',
// ecmaFeatures: {
// jsx: true
// }
// },
// plugins: ['react', '@typescript-eslint', 'react-hooks', 'prettier'],
// // 继承某些已有的规则
// extends: [
// 'eslint:recommended',
// 'plugin:react/recommended',
// 'plugin:@typescript-eslint/recommended',
// 'plugin:react/jsx-runtime',
// 'plugin:react-hooks/recommended',
// 'prettier',
// 'plugin:prettier/recommended'
// ],
// /*
// * 'off' 或 0 ==> 关闭规则
// * 'warn' 或 1 ==> 规则提示为警告(不影响代码执行)
// * 'error' 或 2 ==> 规则提示为错误(代码不能执行,界面报错)
// */
// rules: {
// /*
// * Eslint规则配置
// * 配置文档: https://eslint.nodejs.cn/docs/latest/rules/
// */
// // 需要 let 或 const 而不是 var
// 'no-var': 'error',
// // 禁止在定义变量之前使用变量
// 'no-use-before-define': 'off',
// // 声明后永远不会重新分配的变量需要 const 声明
// 'prefer-const': 'error',
// // 禁止不规则空格
// 'no-irregular-whitespace': 'off',
// // 禁止使用 debugger
// 'no-debugger': 'off',
// // 禁止未使用的变量
// 'no-unused-vars': [
// 'error',
// {
// argsIgnorePattern: '^_',
// varsIgnorePattern: '^_'
// }
// ],
// // 使用 prettier 插件
// 'prettier/prettier': [
// 'error',
// {
// endOfLine: 'auto'
// }
// ],
// /*
// * TypeScript规则配置
// * 配置文档: https://typescript-eslint.nodejs.cn/rules/)
// */
// // 根据参数、属性和变量的默认值或初始值推断其类型
// '@typescript-eslint/no-inferrable-types': 'off',
// // 禁止使用自定义 ts 模块和命名空间
// '@typescript-eslint/no-namespace': 'off',
// // 禁止使用 any 类型
// '@typescript-eslint/no-explicit-any': 'off',
// // 禁止使用特定类型
// '@typescript-eslint/ban-types': 'off',
// // 不允许对初始化为数字、字符串或布尔值的变量或参数进行显式返回类型声明
// '@typescript-eslint/explicit-function-return-type': 'off',
// // 不允许在 import 语句中使用 require 语句
// '@typescript-eslint/no-var-requires': 'off',
// // 禁止空函数
// '@typescript-eslint/no-empty-function': 'off',
// // 禁止在变量定义之前使用它们
// '@typescript-eslint/no-use-before-define': 'off',
// // 禁止 @ts-<directive> 注释代码
// '@typescript-eslint/ban-ts-comment': 'off',
// // 不允许使用后缀运算符的非空断言(!)
// '@typescript-eslint/no-non-null-assertion': 'off',
// // 要求导出函数和类的公共类方法的显式返回和参数类型
// '@typescript-eslint/explicit-module-boundary-types': 'off',
// // 使用顶层 type 限定符进行导入
// '@typescript-eslint/no-import-type-side-effects': 'error',
// // 禁止定义未使用的变量
// '@typescript-eslint/no-unused-vars': [
// 'error',
// {
// argsIgnorePattern: '^_',
// varsIgnorePattern: '^_'
// }
// ],
// // 允许在导入上指定 type 关键字
// '@typescript-eslint/consistent-type-imports': [
// 'error',
// {
// disallowTypeAnnotations: false,
// fixStyle: 'inline-type-imports'
// }
// ],
// // 允许枚举成员的值是多种不同类型的有效 js 表达式
// '@typescript-eslint/prefer-literal-enum-member': [
// 'error',
// {
// allowBitwiseExpressions: true
// }
// ],
// 'react-hooks/rules-of-hooks': 'off',
// 'react-hooks/exhaustive-deps': 'off'
// }
// }