mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-17 05:02:23 +08:00
14 lines
219 B
JavaScript
14 lines
219 B
JavaScript
module.exports = {
|
|
printWidth: 100,
|
|
tabWidth: 2,
|
|
bracketSpacing: true,
|
|
trailingComma: 'es5',
|
|
singleQuote: true,
|
|
overrides: [
|
|
{
|
|
files: '*.html',
|
|
options: { parser: 'babylon' },
|
|
},
|
|
],
|
|
};
|