-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
74 lines (74 loc) · 1.87 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
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
{
"root": true,
"env": {
"es2021": true,
"node": true
},
"extends": [
"neon/common",
"neon/node",
"neon/typescript",
"neon/prettier",
"neon/jsx",
"neon/module",
"neon/next",
"neon/react",
"plugin:@typescript-eslint/recommended",
"plugin:drizzle/all"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module",
"project": "./tsconfig.json"
},
"plugins": ["@typescript-eslint", "prettier", "typescript-sort-keys", "drizzle"],
"settings": {
"react": {
"version": "detect"
}
},
"ignorePatterns": ["dist"],
"overrides": [
{
"extends": ["plugin:@typescript-eslint/recommended-requiring-type-checking"],
"files": ["*.ts", "*.tsx"],
"parserOptions": {
"project": "tsconfig.json"
}
},
{
"files": ["*.ts", "*.tsx"],
"rules": {
"import/no-extraneous-dependencies": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/no-unsafe-return": "off"
}
}
],
"rules": {
"@typescript-eslint/consistent-type-imports": "warn",
"@typescript-eslint/ban-ts-comment": [
"warn",
{
"ts-expect-error": "allow-with-description",
"ts-ignore": "allow-with-description",
"ts-nocheck": "allow-with-description",
"ts-check": "allow-with-description",
"minimumDescriptionLength": 5
}
],
"react/jsx-filename-extension": [1, { "extensions": [".tsx"] }],
"react/jsx-indent": "off",
"react/jsx-indent-props": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/no-unsafe-return": "off",
"id-length": "off"
}
}