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