This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
website/.eslintrc.json

17 lines
318 B
JSON
Raw 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"
},
"env": {
"node": true,
"browser": true,
"jest": true
},
"rules": {
"prettier/prettier": "error",
2022-03-16 12:18:09 +01:00
"@next/next/no-img-element": "off"
2021-10-24 05:48:06 +02:00
}
}