-
Notifications
You must be signed in to change notification settings - Fork 15
/
.eslintrc.js
215 lines (214 loc) · 5.71 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
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
const isInVsCode = process.env.NODE_ENV === undefined
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
jsx: true,
},
useJSXTextNode: true,
project: './tsconfig.json',
},
extends: [
'airbnb-base',
'@zaihui/base',
'taro',
'plugin:@typescript-eslint/recommended',
'plugin:import/errors',
'plugin:import/warnings',
'plugin:import/typescript',
'prettier',
],
plugins: ['@zaihui/eslint-plugin-react'],
env: {
node: false,
browser: false,
},
globals: {
// 小程序本质不是运行在浏览器下,所以不能启用browser的env
// 但有一些类似浏览器下的全局变量需要能够访问,所以在这里启用这些全局变量
clearInterval: 'readonly',
clearTimeout: 'readonly',
setInterval: 'readonly',
setTimeout: 'readonly',
console: 'readonly',
// 微信提供的wx、getCurrentPages、getApp三个特殊变量建议封装后使用,封装时可使用global xxx避免lint报错
wx: 'off',
getCurrentPages: 'off',
getApp: 'off',
},
rules: {
/**
* 配置eslint的自带规则
*/
// 禁止线上环境使用debugger和console
//
// 但因为debugger和console在开发环境经常会用到
// 所以开发环境下只会显示为warning
// 利用了vscode下process.env.NODE_ENV为undefined使用isInVsCode做了hack操作
'no-debugger': isInVsCode ? 'warn' : 'error',
'no-console': isInVsCode ? 'warn' : 'error',
// 禁止一行以上的连续空行
'no-multiple-empty-lines': [
'error',
{
max: 1,
},
],
// 关闭对象花括号换行一致性规则
'object-curly-newline': 'off',
// 关闭禁止在else前有return规则
'no-else-return': 'off',
// 强制在模块顶部调用 require()
'global-require': 'error',
// 开启使用{ ... }替代Object.assign规则
'prefer-object-spread': 'error',
/**
* 配置eslint-plugin-import的规则
*
*/
// 关闭引用模块时一定要添加扩展名规则
//
// 未添加扩展名时按照webpack的resolve/extensions设定自动补全
'import/extensions': 'off',
// 禁止使用import * as xxx 语法引入模块
//
// 这种语法适合用作import * as Math这种用模块取代对象做命名空间的场景
// 但在js下lint无法检查Math.someFunction是否在Math模块中有定义
// 所以通常不要使用这种操作,特殊情况或ts语法下可以根据实际情况决定。
'import/no-namespace': 'error',
// 关闭优先使用export default规则
'import/prefer-default-export': 'off',
/**
* taro init时生成的规则
*
*/
'no-unused-vars': 'off',
'no-duplicate-imports': 'off',
'react/jsx-filename-extension': [
1,
{
extensions: ['.js', '.jsx', '.tsx'],
},
],
'@typescript-eslint/no-unused-vars': [
'error',
{
varsIgnorePattern: 'Taro',
},
],
'@typescript-eslint/member-delimiter-style': [
'error',
{
multiline: {
delimiter: 'none',
requireLast: false,
},
singleline: {
delimiter: 'semi',
requireLast: false,
},
},
],
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-empty-function': ['warn'],
'@typescript-eslint/type-annotation-spacing': [
'error',
{
before: false,
after: true,
overrides: {
arrow: {
before: true,
after: true,
},
},
},
],
'@typescript-eslint/explicit-module-boundary-types': 'error',
},
overrides: [
{
files: ['**/*.js', '**/.*.js'],
parser: 'esprima',
env: {
node: true,
},
rules: {
'import/no-commonjs': 'off',
'@typescript-eslint/no-var-requires': 'off',
'no-console': 'off',
},
},
{
files: ['**/*.tsx'],
rules: {
/**
* taro的枚举条件渲染写法中对象的属性一定要用引号包裹,否则运行时会报错
* 参考:
* https://github.com/NervJS/taro/issues/4343
* https://github.com/NervJS/taro/issues/4343
*/
'quote-props': 'off',
},
},
{
files: ['test/**/*.ts', 'test/**/*.tsx', 'test/**/*.js'],
env: {
jest: true,
},
settings: {
'import/resolver': {
typescript: {
directory: './',
},
},
},
/**
* TODO:
* 开启了这里的extends会报Unexpected top-level property "overrides[2].extends".
* 怀疑是vscode下eslint插件的报错,待研究
*/
extends: ['plugin:jest/all'],
rules: {
'jest/prefer-inline-snapshots': 'off',
'jest/prefer-called-with': 'off',
'react/no-find-dom-node': 'off',
},
},
/**
* 针对vuepress下的lint规则
*/
{
files: ['docs/.vuepress/**/*.js', 'docs/.vuepress/**/*.vue'],
extends: [
'airbnb-base',
'@zaihui/base',
'plugin:vue/recommended',
'plugin:import/errors',
'plugin:import/warnings',
'prettier',
],
env: {
node: true,
browser: true,
},
rules: {
'import/no-extraneous-dependencies': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
},
},
/**
* 允许src/pages下使用@作为alias以方便demo编写
*/
{
files: ['src/pages/**/*.*'],
settings: {
'import/resolver': {
typescript: {
directory: './',
},
},
},
},
],
}