-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.json
46 lines (46 loc) · 1.2 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
{
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"plugin:import/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"next"
],
"plugins": ["@typescript-eslint", "simple-import-sort", "prettier"],
"rules": {
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error",
"react/react-in-jsx-scope": "off",
"react/prop-types": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@next/next/no-img-element": "off",
"react-hooks/exhaustive-deps": "error",
"react/display-name": "off",
"react/no-unescaped-entities": "warn",
"react-hooks/rules-of-hooks": "error",
"import/no-unresolved": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
],
"no-console": [
"error",
{
"allow": ["error"]
}
]
},
"globals": {
"React": "writable"
}
}