.eslintrc.json
1.9 KB
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
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended"
],
"overrides": [],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest"
},
"plugins": ["react", "@typescript-eslint"],
"rules": {
"react/react-in-jsx-scope": "off", // 无需在组件内引用React
"@typescript-eslint/explicit-module-boundary-types": "off", //关闭函数返回类型
"arrow-spacing": ["error", { "before": true, "after": true }],
"semi": ["error", "always"],
"comma-spacing": ["error", { "before": false, "after": true }],
"complexity": 0,
"getter-return": ["error", { "allowImplicit": true }],
"no-unused-vars": ["error", { "vars": "local" }, { "args": "after-used" }],
"no-debugger": "error",
"no-empty": ["error", { "allowEmptyCatch": true }],
"array-callback-return": "error",
"eqeqeq": ["error", "always"],
"no-eval": ["error", { "allowIndirect": true }],
"indent": ["error", 2],
"linebreak-style": "off",
"@typescript-eslint/no-empty-function": "off", // 空函数非禁止使用
"react/display-name": "off", //防止在React组件定义中丢失displayName
"camelcase": ["error", { "properties": "always" }], // 强制驼峰格式
"require-await": "error", // 禁止使用不带 await 表达式的 async 函数
"no-label-var": "error", // 不允许标签与变量同名
"array-bracket-spacing": ["error", "never"], // 强制数组方括号中使用一致的空格
"key-spacing": ["error", { "afterColon": true }], // 要求在对象字面量的冒号和值之间存在至少有一个空格
"lines-around-comment": ["error", { "beforeBlockComment": true }], // 要求在块级注释之前有一空行
"prefer-destructuring": ["error", { "object": true, "array": true }] //优先使用数组和对象解构
}
}