-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
45 lines (45 loc) · 1.21 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
37
38
39
40
41
42
43
44
45
{
"root": true,
"plugins": ["@stylistic", "@typescript-eslint", "import", "unused-imports"],
"env": {
"node": true,
"es2023": true
},
"overrides": [
{
"files": ["*.tsx", "*.ts"],
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:import/recommended"],
"parserOptions": {
"ecmaVersion": 2023,
"sourceType": "module"
},
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"]
},
"import/resolver": {
"typescript": {
"alwaysTryTypes": true,
"project": ["tsconfig.json"]
},
"node": true
}
},
"rules": {
"@stylistic/spaced-comment": [
"error",
"always",
{ "block": { "balanced": true } }
],
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/no-explicit-any": "off",
"import/no-amd": "error",
"import/no-commonjs": "error",
"import/no-unresolved": "error",
"import/no-named-as-default-member": "off",
"no-unused-vars": "off",
"unused-imports/no-unused-imports": "error"
}
}
]
}