saleor-apps-redis_apl/packages/react-hook-form-macaw/.eslintrc

16 lines
332 B
Text
Raw Normal View History

{
"root": true,
"extends": ["saleor"],
"overrides": [
{
"files": ["*stories.tsx"],
"rules": {
// Stories require default export for storybook
"import/no-default-export": "off",
// Story wrapper is an exception to the rule
"react-hooks/rules-of-hooks": "off"
}
}
]
}