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

24 lines
445 B
JSON

{
"extends": [
"conventions",
"next/core-web-vitals",
"plugin:storybook/recommended",
"plugin:cypress/recommended",
"prettier"
],
"parser": "@typescript-eslint/parser",
"plugins": ["prettier"],
"parserOptions": {
"project": "./tsconfig.json"
},
"env": {
"node": true,
"browser": true,
"jest": true
},
"rules": {
"prettier/prettier": "error",
"@next/next/no-img-element": "off"
}
}