-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
113 lines (112 loc) · 3.31 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
{
"root": true,
"extends": [
"eslint:recommended",
"next/core-web-vitals",
"prettier",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:tailwindcss/recommended",
"plugin:playwright/recommended",
"plugin:@tanstack/eslint-plugin-query/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)"],
// test dependencies
["^(@storybook/react|msw)"],
// Other npm libraries.
["^@?\\w"],
// Internal packages
[
"^@/shared/core",
"^@/shared/utils",
"^@/shared/atoms",
"^@/shared/data",
"^@/shared/hooks",
"^@/shared/components",
"^@/shared/providers"
],
["^@/shared/testutils"],
[
"^(@)(/.*/core|$)",
"^(@)(/.*/utils|$)",
"^(@)(/.*/atoms|$)",
"^(@)(/.*/data|$)",
"^(@)(/.*/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|show)[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
// Playwright
"playwright/expect-expect": "off",
// Unused vars
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"args": "all",
"argsIgnorePattern": "^_",
"caughtErrors": "all",
"caughtErrorsIgnorePattern": "^_",
"destructuredArrayIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"ignoreRestSiblings": true
}
]
}
}
]
}