19 lines
508 B
JSON
19 lines
508 B
JSON
|
|
{
|
||
|
|
"extends": ["../../../.eslintrc.base.json", "plugin:storybook/recommended"],
|
||
|
|
"rules": {
|
||
|
|
"@typescript-eslint/strict-boolean-expressions": "off",
|
||
|
|
"@typescript-eslint/no-explicit-any": "off",
|
||
|
|
"@typescript-eslint/prefer-nullish-coalescing": "off",
|
||
|
|
"testing-library/no-node-access": "off",
|
||
|
|
"testing-library/await-async-queries": "off"
|
||
|
|
},
|
||
|
|
"overrides": [
|
||
|
|
{
|
||
|
|
"files": ["**/*.stories.*"],
|
||
|
|
"rules": {
|
||
|
|
"import/no-anonymous-default-export": "off"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|