```js // MyComponent.stories.js|jsx|ts|tsx import { MyComponent } from './YourComponent'; export default { component: MyComponent, }; export const NonA11yStory = { args: {}, parameters: { a11y: { // This option disables all a11y checks on this story disable: true, }, }, }; ```