-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.json
122 lines (121 loc) · 3.43 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"root": true,
"extends": [
"eslint:recommended",
"next/core-web-vitals",
"prettier",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:tailwindcss/recommended"
],
"plugins": ["react", "react-hooks", "prefer-arrow", "simple-import-sort"],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"rules": {
// Sort
"simple-import-sort/exports": "error",
"simple-import-sort/imports": [
"error",
{
"groups": [
// Side effects first e.g. 'server-only'
["^\\u0000"],
// `react`, `next
["^(react|next)"],
// Other npm libraries.
["^@?\\w"],
// Internal packages
[
"^~/shared/core",
"^~/shared/utils",
"^~/shared/atoms",
"^~/shared/api",
"^~/shared/hooks",
"^~/shared/components",
"^~/shared/providers"
],
["^~/shared/testutils"],
[
"^(~)(/.*/core|$)",
"^(~)(/.*/utils|$)",
"^(~)(/.*/atoms|$)",
"^(~)(/.*/api|$)",
"^(~)(/.*/hooks|$)",
"^(~)(/.*/components|$)",
"^(~)(/.*/providers|$)"
],
["^(~)(/.*/testutils|$)"],
// Parent imports `..`
["^\\.\\.(?!/?$)", "^\\.\\./?$"],
// Other relative imports '.'
["^\\./(?=.*/)(?!/?$)", "^\\.(?!/?$)", "^\\./?$"]
]
}
],
// Enforce arrow functions
"prefer-arrow/prefer-arrow-functions": [
"error",
{
"disallowPrototype": true,
"singleReturnOnly": true,
"classPropertiesAllowed": false
}
],
// Override react defaults
"react/boolean-prop-naming": [
"error",
{ "rule": "^(is|has|should)[A-Z]([A-Za-z0-9]?)+" }
],
"react/react-in-jsx-scope": "off",
"react/function-component-definition": [
"error",
{
"namedComponents": "arrow-function",
"unnamedComponents": "arrow-function"
}
],
"react/require-default-props": "off",
"react/prop-types": "off",
// Tailwindcss
"tailwindcss/classnames-order": [
2,
{
"callees": ["cn", "cva", "clsx"]
}
],
"tailwindcss/no-custom-classname": "off", // Slow perf
// Unused vars
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"args": "all",
"argsIgnorePattern": "^_",
"caughtErrors": "all",
"caughtErrorsIgnorePattern": "^_",
"destructuredArrayIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"ignoreRestSiblings": true
}
]
}
},
{
"files": ["*.{ts,tsx}"],
"processor": "@graphql-eslint/graphql"
},
{
"files": ["*.graphql"],
"parser": "@graphql-eslint/eslint-plugin",
"plugins": ["@graphql-eslint"],
"rules": {
"@graphql-eslint/known-type-names": "error"
},
"parserOptions": {
"schema": "./schema.graphql"
}
}
]
}