Norbert de Langen 341fc2d90d
FIX linting
2020-03-27 20:04:50 +01:00

24 lines
467 B
JavaScript

import { addParameters } from '@storybook/html';
const SOURCE_REGEX = /^\(\) => [`'"](.*)['`"]$/;
addParameters({
a11y: {
config: {},
options: {
checks: { 'color-contrast': { options: { noScroll: true } } },
restoreScroll: true,
},
},
options: {
showRoots: true,
},
docs: {
iframeHeight: '200px',
formatSource: (src) => {
const match = SOURCE_REGEX.exec(src);
return match ? match[1] : src;
},
},
});