18 lines
358 B
JSON
18 lines
358 B
JSON
{
|
|
"extends": ["conventions", "next/core-web-vitals", "prettier"],
|
|
"plugins": ["prettier"],
|
|
"parserOptions": {
|
|
"project": "./tsconfig.json"
|
|
},
|
|
"rules": {
|
|
"prettier/prettier": "error",
|
|
"@next/next/no-img-element": "off"
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["*.ts", "*.tsx"],
|
|
"parser": "@typescript-eslint/parser"
|
|
}
|
|
]
|
|
}
|