2
2
mirror of https://github.com/Thream/website.git synced 2024-07-21 09:28:32 +02:00
website/.eslintrc.json

16 lines
300 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
2021-10-24 05:48:06 +02:00
},
"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
}
}