-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
25 lines (25 loc) · 891 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
{
"extends": "next/core-web-vitals",
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"rules": {
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-non-null-asserted-optional-chain": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/prefer-namespace-keyword": "off",
"array-callback-return": "off",
"no-extra-boolean-cast": "off",
"no-prototype-builtins": "off",
"no-throw-literal": "off",
"react-hooks/exhaustive-deps": "off",
"react/jsx-no-useless-fragment": "off"
}
}
]
}