22 lines
370 B
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"
|
|
}
|
|
}
|