-
Notifications
You must be signed in to change notification settings - Fork 0
/
typescript.js
39 lines (39 loc) · 1.31 KB
/
typescript.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
module.exports = {
extends: ['./base.js', 'plugin:@typescript-eslint/recommended'],
parserOptions: {
parser: require.resolve('@typescript-eslint/parser'),
ecmaFeatures: {
jsx: true
}
},
rules: {
'@typescript-eslint/camelcase': 'off',
// 驼峰命名
'@typescript-eslint/ban-ts-comment': 'warn',
// @ts-xxxx
'@typescript-eslint/no-unused-vars': 'error',
// 没有用的变量定义
'@typescript-eslint/no-var-requires': 'off',
// 除导入语句外,禁止使用require语句
'@typescript-eslint/no-explicit-any': 'off',
// 禁止使用any类型
'@typescript-eslint/no-empty-function': 'off',
// 禁止空函数
'@typescript-eslint/no-non-null-assertion': 'off',
// 使用!后缀运算符禁止非空断言
'@typescript-eslint/explicit-function-return-type': 'off',
// 在函数和类方法上需要显式的返回类型
'@typescript-eslint/explicit-module-boundary-types': 'off'
// 在导出函数和类的公共类方法上要求显式的返回值和参数类型
},
overrides: [
{
files: ['*.ts', '*.tsx'],
rules: {
// 核心的 “no-unused-vars” 规则(在eslint:recommeded规则集中)
// 与 @typescript-eslint/recommended 里的规则重复
'no-unused-vars': 'off'
}
}
]
}