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