-
Notifications
You must be signed in to change notification settings - Fork 4
/
.eslintrc.json
156 lines (156 loc) · 4.67 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"env": {
"browser": true,
"es2021": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"extends": [
"airbnb",
"airbnb/hooks",
"plugin:react/recommended",
"plugin:import/recommended",
"plugin:jsx-a11y/recommended",
"plugin:@typescript-eslint/recommended",
"eslint-config-prettier",
"next/core-web-vitals"
],
"globals": {
"NodeJS": true
},
"plugins": ["@typescript-eslint", "import"],
"env": {
"browser": true,
"jasmine": true,
"jest": true
},
"settings": {
"react": {
// Tells eslint-plugin-react to automatically detect the version of React to use.
"version": "detect"
},
"import/core-modules": [
"@emotion/react",
"@emotion/styled",
"@testing-library/react",
"@testing-library/jest-dom",
"@testing-library/user-event",
"@testing-library/react-hook"
],
"import/extensions": [".js", ".jsx", ".ts", ".tsx"],
"import/resolver": {
"node": {
"paths": ["src"],
"extensions": [".js", ".jsx", ".ts", ".tsx"]
},
"typescript": {
"project": "."
}
}
},
"rules": {
"arrow-body-style": "off",
"no-plusplus": "off",
"react/display-name": "off",
"react/function-component-definition": ["warn", { "namedComponents": "arrow-function" }],
"react/jsx-one-expression-per-line": "off",
"react/jsx-filename-extension": ["error", { "extensions": [".js", ".jsx", ".ts", ".tsx"] }],
"react/jsx-props-no-spreading": "off",
"react/require-default-props": "off",
"react/jsx-wrap-multilines": "off",
"react/react-in-jsx-scope": "off",
"react/prop-types": "off",
"import/prefer-default-export": "off",
"import/no-unresolved": "off",
"no-restricted-exports": ["error", { "restrictDefaultExports": { "defaultFrom": false } }],
"import/order": [
"warn",
{
"pathGroups": [
{
"pattern": "@/lib/**",
"group": "external"
},
{
"pattern": "{types/*,@/types*,./types}",
"group": "type"
},
{
"pattern": "{hooks,@/hooks/**/*,./hooks/**,./use**,../use**,../../use**,../../../use**,,../../hooks/**,./_hooks/**,../../../_hooks/**}",
"group": "internal"
},
{
"pattern": "{utils/**/*,./utils,../utils,../../utils,../../../utils}",
"group": "type"
},
{
"pattern": "{@/constants/*,./constants}",
"group": "type"
},
{
"pattern": "{states/**/*,./states*,./**/states*,../states*,../../states*,../../../states*,,../../../../states*,**/**/**/states*}",
"group": "type"
},
{
"pattern": "@/services/**",
"group": "type"
},
{
"pattern": "{./helpers,./data,./config,./defaults,../../../defaults}",
"group": "type"
},
{
"pattern": "{components,components/_common/**,@/components,@/components/**,svgs,@/assets/**/*,@/app/**,routes/**,public/**}",
"group": "index"
},
{
"pattern": "{styles,./*.scss,../*.scss,../*.module.scss}",
"group": "index"
}
],
"groups": [
["external", "builtin"],
["type", "internal", "object"],
["parent", "sibling", "index"]
],
"newlines-between": "always"
}
],
"import/no-anonymous-default-export": "off",
"import/no-extraneous-dependencies": 0,
"import/extensions": [
"error",
"ignorePackages",
{
// "js": "never",
"jsx": "never",
"ts": "never",
"tsx": "never"
}
],
"no-param-reassign": ["error", { "props": false }],
"no-unused-expressions": ["warn"],
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }],
"no-shadow": "off",
"no-console":"off",
"@typescript-eslint/no-shadow": ["error"],
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }],
"prefer-destructuring": ["error", { "object": true, "array": false }],
"lines-between-class-members": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/label-has-associated-control": [
"error",
{
"labelComponents": ["label"],
"labelAttributes": ["htmlFor"],
"controlComponents": ["input"]
}
]
},
"globals": { "navigation": "readonly", "globalThis": false, "NodeJS": true, "JSX": true }
}