14 lines
395 B
JSON
14 lines
395 B
JSON
{
|
|
"extends": [
|
|
"next/core-web-vitals",
|
|
"plugin:prettier/recommended",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
"plugins": ["@typescript-eslint"],
|
|
"rules": {
|
|
"@next/next/no-html-link-for-pages": "off",
|
|
"@typescript-eslint/no-non-null-assertion": "off",
|
|
"@typescript-eslint/consistent-type-imports": "error",
|
|
"import/no-anonymous-default-export": "off"
|
|
}
|
|
}
|