Releases: storybookjs/eslint-plugin-storybook
Releases · storybookjs/eslint-plugin-storybook
v0.6.12
🐛 Bug Fix
- feat: allow ignore option in no-uninstalled-addons #129 (@mandarini @yannbf)
📝 Documentation
- docs: add async #121 (@tyankatsu0105)
Authors: 3
- Katerina Skroumpelou (@mandarini)
- tyankatsu (@tyankatsu0105)
- Yann Braga (@yannbf)
v0.6.11
v0.6.10
🐛 Bug Fix
- chore: fix ESLint and TypeScript issues #113 (@Dschungelabenteuer @yannbf)
Authors: 2
- n028 (@Dschungelabenteuer)
- Yann Braga (@yannbf)
v0.6.9
🐛 Bug Fix
- fix(no-uninstalled-addons) Support Windows paths #112 (@Dschungelabenteuer)
Authors: 1
- n028 (@Dschungelabenteuer)
v0.6.8
🐛 Bug Fix
- Support typescript 4.9 #110 (@yannbf @kasperpeulen)
Authors: 2
- Kasper Peulen (@kasperpeulen)
- Yann Braga (@yannbf)
v0.6.7
🐛 Bug Fix
- fix: add declaration checks to avoid destructuring undefined #99 (@stefanprobst @yannbf)
Authors: 2
- @stefanprobst
- Yann Braga (@yannbf)
v0.6.6
v0.6.5
Release Notes
story-exports: provide better feedback when using filters (#107)
The story-exports
rule now detects whether you are using includeStories/excludeStories
and provides a more helpful message in case there are not exported stories. A possible scenario is you have a typo in your includeStories
which will result in Storybook not including it:
export default {
title: 'Button',
includeStories: ['myStory'], // <-- notice the lowercase m, which won't match with the story name
};
export const MyStory = {};
🐛 Bug Fix
Authors: 1
- Yann Braga (@yannbf)