-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
48 lines (48 loc) · 931 Bytes
/
.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
{
"extends": [
"next",
"plugin:@next/next/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"next/core-web-vitals",
"plugin:jsx-a11y/recommended",
"prettier",
"plugin:storybook/recommended"
],
"ignorePatterns": [
"node_modules/*",
"next.config.js",
"proxy.js"
],
"parserOptions": {
"project": "./tsconfig.json",
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest"
},
"plugins": [
"react",
"react-hooks",
"import"
],
"rules": {
"no-restricted-imports": [
"error",
{
"patterns": [
"@mui/*/*/*"
]
}
],
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_"
}
]
}
}