mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-16 05:03:11 +08:00
12 lines
192 B
JavaScript
12 lines
192 B
JavaScript
const base = require('@storybook/linter-config/prettier.config');
|
|
|
|
module.exports = {
|
|
...base,
|
|
overrides: [
|
|
{
|
|
files: '*.html',
|
|
options: { parser: 'babel' },
|
|
},
|
|
],
|
|
};
|