21 lines
394 B
JSON
21 lines
394 B
JSON
|
|
{
|
||
|
|
"$schema": "https://json.schemastore.org/eslintrc",
|
||
|
|
"root": true,
|
||
|
|
"extends": ["next/core-web-vitals", "prettier"],
|
||
|
|
"rules": {
|
||
|
|
"@next/next/no-html-link-for-pages": "off",
|
||
|
|
"react/jsx-key": "off"
|
||
|
|
},
|
||
|
|
"settings": {
|
||
|
|
"next": {
|
||
|
|
"rootDir": ["./"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"overrides": [
|
||
|
|
{
|
||
|
|
"files": ["*.ts", "*.tsx"],
|
||
|
|
"parser": "@typescript-eslint/parser"
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|