-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
.eslintrc.json
31 lines (31 loc) · 1.01 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
{
"extends": [
"next/core-web-vitals",
"next/typescript",
"eslint:recommended",
"prettier"
],
"rules": {
"@next/next/no-html-link-for-pages": "off",
"no-undef": "off",
"no-unused-vars": "off",
"react-hooks/exhaustive-deps": "off",
"react/jsx-uses-react": "warn",
"@typescript-eslint/consistent-type-definitions": "off",
"@next/next/no-img-element": "off",
"@typescript-eslint/prefer-nullish-coalescing": "off",
"@typescript-eslint/consistent-type-imports": "error",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/require-await": "off",
"react/react-in-jsx-scope": "off",
"react/no-children-prop": "off",
"react/prop-types": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-explicit-any": "off",
"react/no-unescaped-entities": "off",
"@typescript-eslint/ban-types": "off",
"react/no-unknown-property": "off",
"import/no-anonymous-default-export": "off",
"react/display-name": "off"
}
}