forked from lanten/electron-antd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
70 lines (60 loc) · 2.43 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
/**
* @typescript-eslint 规则参考
* https://www.npmjs.com/package/@typescript-eslint/eslint-plugin#supported-rules
*/
module.exports = {
root: true,
parser: '@typescript-eslint/parser', // 指定ESLint解析器
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:react/recommended',
'plugin:jsx-control-statements/recommended',
'prettier/react',
// 使用 eslint config prettier禁用 @typescript eslint/eslint 插件中与 prettier 冲突的 eslint 规则
'prettier/@typescript-eslint',
// 启用 eslint-plugin-prettier ,并将 prettier 错误显示为 eslint 错误。确保这始终是扩展数组中的最后一个配置。
'plugin:prettier/recommended',
],
settings: {
react: {
version: 'detect',
},
},
plugins: ['react', 'prettier'],
env: {
browser: true,
node: true,
es6: true,
mocha: true,
'jsx-control-statements/jsx-control-statements': true,
},
globals: {
$api: true,
},
rules: {
'no-console': 'off', // 禁用 console
'no-debugger': 'error', // 禁用 debugger
'no-alert': 'error', // 禁用 alert
indent: ['error', 2, { SwitchCase: 1 }], // 强制使用两个空格作为缩进
quotes: ['error', 'single'], //强制使用单引号
semi: ['error', 'never'], //强制不使用分号结尾
'comma-dangle': ['error', 'always-multiline'], // 逗号结束
'no-param-reassign': 'error', // 禁止对 function 的参数进行重新赋值
'jsx-quotes': ['error', 'prefer-double'], // 强制所有 JSX 属性值使用双引号。
'prettier/prettier': 'error', // prettier
'prefer-rest-params': 0,
'react/display-name': 0,
'jsx-control-statements/jsx-use-if-tag': 0, // 强制在 jsx 中使用 if 判断
'jsx-control-statements/jsx-jcs-no-undef': 0,
'@typescript-eslint/no-explicit-any': 0, // 禁用 any 类型
'@typescript-eslint/ban-ts-ignore': 0, // 禁用 @ts-ignore
'@typescript-eslint/explicit-function-return-type': 0, // 在函数和类方法上需要显式的返回类型
'@typescript-eslint/no-var-requires': 0, // 除 import 语句外,禁止使用require语句
'@typescript-eslint/no-namespace': 0, // 禁用 namespace
'@typescript-eslint/no-use-before-define': 0,
'@typescript-eslint/no-empty-interface': 0,
'@typescript-eslint/no-empty-function': 1,
'@typescript-eslint/no-unused-vars': 1, // 导入内容未使用
'@typescript-eslint/camelcase': 1,
},
}