18 lines
353 B
JSON
18 lines
353 B
JSON
|
{
|
||
|
"root": true,
|
||
|
"plugins": [
|
||
|
"@typescript-eslint"
|
||
|
],
|
||
|
"extends": [
|
||
|
"next/core-web-vitals",
|
||
|
"plugin:@typescript-eslint/recommended",
|
||
|
"prettier"
|
||
|
],
|
||
|
"rules": {
|
||
|
"react-hooks/exhaustive-deps": "off",
|
||
|
"no-console": "off",
|
||
|
"@typescript-eslint/no-unused-vars": "off",
|
||
|
"@typescript-eslint/no-explicit-any": "off"
|
||
|
}
|
||
|
}
|