We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 982ac6e commit fce9c10Copy full SHA for fce9c10
packages/eslint-config/src/storybook.js
@@ -14,14 +14,15 @@ const extensions = [
14
module.exports = {
15
overrides: [
16
{
17
- files: makePatterns(postfixes, extensions),
+ files: makePatterns(postfixes, extensions).concat('.storybook/**/*'),
18
rules: {
19
'max-classes-per-file': 'off',
20
'no-magic-numbers': 'off',
21
'@typescript-eslint/no-magic-numbers': 'off',
22
'max-nested-callbacks': 'off',
23
'react/no-array-index-key': 'off',
24
- 'react/jsx-no-bind': 'off'
+ 'react/jsx-no-bind': 'off',
25
+ 'import/no-default-export': 'off'
26
}
27
28
]
0 commit comments