2
2
mirror of https://github.com/Thream/website.git synced 2024-07-04 01:20:13 +02:00
website/.eslintrc.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"
}
]
}