Skip to content

Commit

Permalink
Disable no-default-export rule for Storybook files (#26)
Browse files Browse the repository at this point in the history
# Disable no-default-export rule for Storybook files

## ♻️ Current situation & Problem
Storybooks use default exports as part of their build process.


## ⚙️ Release Notes 
* Disable no-default-export rule for Storybook files


### Code of Conduct & Contributing Guidelines 

By submitting creating this pull request, you agree to follow our [Code
of
Conduct](https://github.com/StanfordBDHG/.github/blob/main/CODE_OF_CONDUCT.md)
and [Contributing
Guidelines](https://github.com/StanfordBDHG/.github/blob/main/CONTRIBUTING.md):
- [x] I agree to follow the [Code of
Conduct](https://github.com/StanfordBDHG/.github/blob/main/CODE_OF_CONDUCT.md)
and [Contributing
Guidelines](https://github.com/StanfordBDHG/.github/blob/main/CONTRIBUTING.md).
  • Loading branch information
arkadiuszbachorski authored Jun 5, 2024
1 parent f2204c8 commit 8bfce43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
},
"overrides": [
{
"files": ["app/**/*.ts?(x)"],
"files": ["app/**/*.ts?(x)", "**/*.stories.ts?(x)"],
"rules": {
"import/no-default-export": "off"
}
Expand Down

0 comments on commit 8bfce43

Please sign in to comment.