-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
124 lines (119 loc) · 3.37 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
module.exports = {
// 使用 TypeScript 的解析器
parser: '@typescript-eslint/parser',
// 定义代码运行的环境
env: {
browser: true,
es6: true,
node: true
},
// 定义解析器选项
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module',
// 允许解析 JSX
ecmaFeatures: {
jsx: true
}
},
// 配置模块解析设置
settings: {
react: {
version: 'detect' // 使用 "detect" 可以自动检测 React 的版本
},
// 指定 TypeScript 解析器应解析哪些文件
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx', '.js']
},
// 使用 TypeScript 解析器作为模块解析器
'import/resolver': {
// 始终尝试使用类型信息进行解析
typescript: {
alwaysTryTypes: true
}
}
},
// 使用 import 插件,主要用于导入/导出相关的规则
plugins: ['import', 'prettier'],
// 使用 TypeScript、React Hooks 和 React 的推荐配置
extends: [
'prettier',
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react-hooks/recommended',
'plugin:react/recommended',
'plugin:promise/recommended',
'plugin:jsx-a11y/recommended',
'plugin:security/recommended'
],
// 自定义规则
rules: {
'max-len': ['error', { code: 150, ignoreUrls: true, ignoreStrings: true }],
'security/detect-non-literal-fs-filename': 'off',
'prettier/prettier': 'error',
// 基础规则
'@typescript-eslint/no-explicit-any': 'off', // 允许使用 any
'padding-line-between-statements': [
'error',
{
// 在函数或多行块语句之间始终添加空行
blankLine: 'always',
prev: ['function', 'multiline-block-like'],
next: ['function', 'multiline-block-like']
}
],
'no-multiple-empty-lines': ['error', { max: 2 }],
// 允许then
'promise/no-promise-in-callback': 'off',
// 当链式调用超过2次时,要求换行
'newline-per-chained-call': [
'error',
{
ignoreChainWithDepth: 2
}
],
// 要求 import 语句后有指定数量的空行,此配置要求有一个空行。
'import/newline-after-import': [
'error',
{
count: 1
}
],
// 要求数组的开闭括号之间的换行与括号内的元素保持一致
'array-bracket-newline': ['error', 'consistent'],
// typescript-eslint
'@typescript-eslint/no-unused-vars': 'off', // 允许未使用的变量
'@typescript-eslint/no-var-requires': 'off', // 允许使用 require
// react
'react-hooks/exhaustive-deps': 'off',
'react/react-in-jsx-scope': 'error', // 需要引入 React
'react/function-component-definition': 'off', // 不要求特定的函数组件定义方式
'react-hooks/rules-of-hooks': 'error', // 强制使用 React Hooks 规则
'react/jsx-filename-extension': [
1,
{
extensions: ['.jsx', '.tsx']
}
],
// 仅在指定的文件扩展名中允许 JSX
// 配置导入顺序
'import/order': [
'error',
{
groups: [
'builtin',
'external',
'internal',
'parent',
'sibling',
'index'
],
'newlines-between': 'never',
alphabetize: {
order: 'ignore',
caseInsensitive: true
}
}
]
}
}