-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
68 lines (68 loc) · 1.79 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
/**
* 1. 使用 eslint 而非 tslint,因为 tslint 已经废弃不更新,其官方也推荐 eslint
* 2. prettier 和 eslint 有一定交叉的地方,但不妨碍同时使用,主要目的是各司其职
* - eslint:语法检查
* - prettier:代码美化
* 3. 推荐在 .vscode/settings.json 配置文件中,添加 autoFix 能力
*/
module.exports = {
root: true,
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:import/recommended',
'plugin:import/typescript'
],
parser: '@typescript-eslint/parser',
plugins: [
'@typescript-eslint'
],
// 需要覆盖上面配置中 rule 的规则
rules: {
// all
//...
// ts
'@typescript-eslint/ban-types': ['warn'],
'@typescript-eslint/no-empty-function': ['warn'], // 空函数警告下
'@typescript-eslint/no-unused-vars': ['warn'],
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-explicit-any": "off",
//
'import/order': ['warn', {
groups: ["builtin", "external", "internal", "parent", "sibling", "index", "object", "type"]
}],
// react
// 'react-hooks/rules-of-hooks': 'warn', // 检查 effect 规则
// 'react-hooks/exhaustive-deps': 'warn', // 检查 effect 依赖
//...
},
globals: {
// Nodejs
process: true,
define: true,
require: true,
module: true,
Module: true,
globalThis: true,
// debug
debugger: true,
DEBUG: true,
// test-case
describe: true, // 测试用例所需对象
it: true, // 测试用例所需对象
// ES6+
Promise: true,
DEBUG: true,
// 前端 MVVM 框架
React: true,
Vue: true,
},
settings: {
"import/resolver": {
typescript: {
alwaysTryTypes: true
},
node: true,
}
}
}