forked from DavidKk/Vercel-Gemini-Proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
78 lines (78 loc) · 2.38 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
module.exports = {
/**
* 设置为根目录
* @see https://eslint.org/docs/latest/user-guide/configuring/configuration-files#cascading-and-hierarchy
*/
root: true,
extends: ['plugin:@typescript-eslint/recommended', 'prettier'],
parser: '@typescript-eslint/parser',
parserOptions: {
/** 项目 ts 配置文件 */
project: './tsconfig.json',
},
env: {
node: true,
},
plugins: ['@typescript-eslint', 'eslint-plugin-import', 'prettier', 'react-hooks'],
rules: {
/** 请与 `.prettierrc.js` 保持一致 */
'max-len': [
'error',
{
/** 一行的字符数, 如果超过会进行换行 */
code: 180,
tabWidth: 2,
ignoreTemplateLiterals: true,
ignoreUrls: true,
ignoreStrings: true,
},
],
semi: ['error', 'never'],
'no-console': 'warn',
/** 不能重复引入 */
'import/no-duplicates': 'warn',
/** 类型导出必须使用 type */
'@typescript-eslint/consistent-type-exports': 'warn',
/** 类型导入必须使用 type */
'@typescript-eslint/consistent-type-imports': 'warn',
/** 不能使用 any */
'@typescript-eslint/no-explicit-any': 'off',
/** 必须声明返回类型 */
'@typescript-eslint/explicit-function-return-type': 'off',
/** 必须声明入参类型 */
'@typescript-eslint/explicit-module-boundary-types': 'off',
/**
* 基础类型复制无需声明类型
* @see https://typescript-eslint.io/rules/no-inferrable-types
*/
'@typescript-eslint/no-inferrable-types': 'warn',
/** interface 名字前缀 */
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/member-delimiter-style': [
'error',
{
multiline: {
delimiter: 'none',
requireLast: false,
},
singleline: {
delimiter: 'semi',
requireLast: false,
},
},
],
/** 引用必须在依赖中有声明 */
'import/no-extraneous-dependencies': [
'warn',
{
/**
* SRC 下不能有只声明在 devDependencies 的依赖
* 特定情况可以通过 `// eslint-disable-next-line import/no-extraneous-dependencies` 忽略
*/
devDependencies: ['**/*.spec.ts', '**/*/jest.config.*.ts', 'jest/**.ts'],
},
],
'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive-deps': 'warn',
},
}