16 lines
368 B
JSON
16 lines
368 B
JSON
{
|
|
"extends": ["next/core-web-vitals", "next/typescript"],
|
|
"rules": {
|
|
"@typescript-eslint/no-unused-vars": [
|
|
"warn",
|
|
{
|
|
"argsIgnorePattern": "^_",
|
|
"varsIgnorePattern": "^_",
|
|
"caughtErrorsIgnorePattern": "^_"
|
|
}
|
|
],
|
|
"@typescript-eslint/no-empty-object-type": "warn",
|
|
"react/no-unescaped-entities": "warn"
|
|
}
|
|
}
|