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

22 lines
370 B
JSON

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