storybook/prettier.config.js
2019-01-24 15:52:38 +01:00

14 lines
217 B
JavaScript

module.exports = {
printWidth: 100,
tabWidth: 2,
bracketSpacing: true,
trailingComma: 'es5',
singleQuote: true,
overrides: [
{
files: '*.html',
options: { parser: 'babel' },
},
],
};