Michael Shilman 9b39b34324 Fix liting
2019-12-06 21:29:50 +08:00

14 lines
385 B
JavaScript

import { addParameters, addDecorator } from '@storybook/ember';
import { setJSONDoc } from '@storybook/addon-docs/ember';
import { withA11y } from '@storybook/addon-a11y';
// eslint-disable-next-line import/no-unresolved
import docJson from '../dist/storybook-docgen/index.json';
setJSONDoc(docJson);
addDecorator(withA11y);
addParameters({
options: {
showRoots: true,
},
});