forked from SuperteamDAO/earn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
93 lines (93 loc) · 3.22 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"extends": [
"next/core-web-vitals", // Needed to avoid warning in next.js build: 'The Next.js plugin was not detected in your ESLint configuration'
"plugin:prettier/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@tanstack/eslint-plugin-query/recommended",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": ["@tanstack/query"],
"rules": {
"@typescript-eslint/consistent-type-imports": [
"error",
{
"prefer": "type-imports",
"fixStyle": "inline-type-imports"
}
],
"@tanstack/query/exhaustive-deps": "error",
"@tanstack/query/no-rest-destructuring": "error",
"@tanstack/query/stable-query-client": "error"
},
"overrides": [
// Configuration for TypeScript files
{
"files": ["**/*.ts", "**/*.tsx"],
"plugins": [
"@typescript-eslint/eslint-plugin",
"@typescript-eslint",
"unused-imports",
"simple-import-sort",
"react",
"react-hooks",
"@tanstack/query"
],
"extends": [
"plugin:@typescript-eslint/recommended",
"next/core-web-vitals",
"plugin:prettier/recommended",
"plugin:@tanstack/eslint-plugin-query/recommended"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
// "no-restricted-imports": [
// "error",
// {
// "patterns": [
// {
// "group": ["@/features/*/*"],
// "message": "Import from '@features' should not go beyond the first level of nesting."
// }
// ]
// }
// ],
"import/no-duplicates": ["error", { "prefer-inline": true }],
"react-hooks/exhaustive-deps": "off", // Incorrectly report needed dependency with Next.js router
"@next/next/no-img-element": "off", // We currently not using next/image because it isn't supported with SSG mode
"@typescript-eslint/consistent-type-imports": "error", // Ensure `import type` is used when it's necessary
"simple-import-sort/imports": [
"error",
{
"groups": [
["^\\u0000", "^@?\\w"],
[
"^(@(?!/features)|@/lib|@/utils|@/hooks|@/components|@/interface|@/layouts|@/constants)(/.*|$)"
],
["^@/features/([^/]+)(?=/).*$"],
["^\\."],
["^.+\\.s?css$"]
]
}
],
"simple-import-sort/exports": "error", // Export configuration for `eslint-plugin-simple-import-sort`
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-non-null-asserted-optional-chain": "off",
"unused-imports/no-unused-imports": "error",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-var-requires": "off",
"unused-imports/no-unused-vars": [
"error",
{ "argsIgnorePattern": "^_" }
],
"@tanstack/query/exhaustive-deps": "error",
"@tanstack/query/no-rest-destructuring": "error",
"@tanstack/query/stable-query-client": "error"
}
}
]
}