22 lines
418 B
JSON
22 lines
418 B
JSON
|
|
{
|
||
|
|
"extends": [
|
||
|
|
"next/core-web-vitals",
|
||
|
|
"next/typescript",
|
||
|
|
"prettier"
|
||
|
|
],
|
||
|
|
"plugins": ["prettier"],
|
||
|
|
"rules": {
|
||
|
|
"prettier/prettier": "warn",
|
||
|
|
"@typescript-eslint/no-unused-vars": [
|
||
|
|
"warn",
|
||
|
|
{
|
||
|
|
"argsIgnorePattern": "^_",
|
||
|
|
"varsIgnorePattern": "^_"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"@typescript-eslint/no-explicit-any": "error",
|
||
|
|
"prefer-const": "error",
|
||
|
|
"no-var": "error"
|
||
|
|
}
|
||
|
|
}
|