-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
36 lines (35 loc) · 1.08 KB
/
.eslintrc.json
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
{
"env": {
"browser": true,
"node": true,
"es2021": true
},
"extends": ["eslint:recommended", "plugin:prettier/recommended"],
"overrides": [
{
"files": ["**/*.{ts,tsx}"], // 只处理 ts 和 js 文件
"excludedFiles": [".eslintrc.json"], // 这里禁用了 .eslintrc.js 的类型检查
"parser": "@typescript-eslint/parser", // 能看懂 TypeScript
"parserOptions": {
"project": ["./tsconfig.json"] // 告诉 eslint:tsconfig 在哪
},
"extends": [
// typescript-eslint 的推荐规则,只是这些最佳规则都是针对 TS 的
"plugin:@typescript-eslint/recommended",
// tsconfig.json 里 Type Checking 的推荐规则
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"plugins": [
// 使用 typescript x eslint 的插件
"@typescript-eslint"
]
},
{
"files": ["**/*.{js,jsx}"], // 只处理 js 和 jsx 文件
"extends": ["eslint:recommended", "plugin:prettier/recommended"]
}
],
"rules": {
"endOfLine": "auto"
}
}