13 lines
373 B
JSON
13 lines
373 B
JSON
{
|
|
"extends": ["next/core-web-vitals", "next/typescript"],
|
|
"rules": {
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }],
|
|
"@typescript-eslint/no-require-imports": "off",
|
|
"prefer-const": "warn",
|
|
"react/no-unescaped-entities": "off",
|
|
"@next/next/no-img-element": "warn"
|
|
}
|
|
}
|
|
|