Skip to content

Commit

Permalink
fix(eslint-config): disable stories' default export rule
Browse files Browse the repository at this point in the history
  • Loading branch information
andrepolischuk committed Feb 12, 2024
1 parent 7e3c8e0 commit 19ae0c7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/eslint-config/react.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ module.exports = {
files: ['**/__stories__/**', '*.story.*'],
rules: {
'import/no-unused-modules': 'off',
'import/no-anonymous-default-export': 'off'
'import/no-anonymous-default-export': 'off',
'storybook/default-exports': 'off'
}
}
]
Expand Down

0 comments on commit 19ae0c7

Please sign in to comment.