2021-05-08 19:52:04 +02:00
|
|
|
{
|
2021-12-04 15:52:51 +01:00
|
|
|
"extends": ["conventions", "next/core-web-vitals", "prettier"],
|
2023-08-01 14:11:46 +02:00
|
|
|
"plugins": ["prettier"],
|
2021-05-08 19:52:04 +02:00
|
|
|
"parserOptions": {
|
|
|
|
"project": "./tsconfig.json"
|
|
|
|
},
|
|
|
|
"rules": {
|
2024-01-23 22:01:50 +01:00
|
|
|
"prettier/prettier": "error",
|
|
|
|
"react/self-closing-comp": [
|
|
|
|
"error",
|
|
|
|
{
|
|
|
|
"component": true,
|
|
|
|
"html": true
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"react/void-dom-elements-no-children": "error",
|
|
|
|
"react/jsx-boolean-value": "error"
|
2023-07-19 00:09:28 +02:00
|
|
|
},
|
|
|
|
"overrides": [
|
|
|
|
{
|
|
|
|
"files": ["*.ts", "*.tsx"],
|
|
|
|
"parser": "@typescript-eslint/parser"
|
|
|
|
}
|
|
|
|
]
|
2021-05-08 19:52:04 +02:00
|
|
|
}
|