35 lines
660 B
JSON
35 lines
660 B
JSON
{
|
|
"extends": [
|
|
"next/core-web-vitals",
|
|
"next/typescript"
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/no-explicit-any": "warn",
|
|
"@typescript-eslint/no-unused-vars": [
|
|
"warn",
|
|
{
|
|
"argsIgnorePattern": "^_",
|
|
"varsIgnorePattern": "^_"
|
|
}
|
|
],
|
|
"@typescript-eslint/no-require-imports": "off",
|
|
"react-hooks/exhaustive-deps": "warn",
|
|
"react/no-unescaped-entities": "off",
|
|
"no-console": [
|
|
"warn",
|
|
{
|
|
"allow": ["warn", "error"]
|
|
}
|
|
]
|
|
},
|
|
"ignorePatterns": [
|
|
"node_modules/",
|
|
".next/",
|
|
"out/",
|
|
"build/",
|
|
"coverage/",
|
|
"*.config.js",
|
|
"*.config.ts"
|
|
]
|
|
}
|