2
2
mirror of https://github.com/Thream/website.git synced 2024-07-06 18:40:12 +02:00
website/.eslintrc.json

18 lines
358 B
JSON
Raw Permalink Normal View History

2021-10-24 05:48:06 +02:00
{
2022-03-16 12:18:09 +01:00
"extends": ["conventions", "next/core-web-vitals", "prettier"],
"plugins": ["prettier"],
2021-10-24 05:48:06 +02:00
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"prettier/prettier": "error",
2022-03-16 12:18:09 +01:00
"@next/next/no-img-element": "off"
},
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"parser": "@typescript-eslint/parser"
}
]
2021-10-24 05:48:06 +02:00
}