storybook/prettier.config.js

13 lines
217 B
JavaScript
Raw Normal View History

2019-09-26 17:49:50 +02:00
const base = require('@storybook/linter-config/prettier.config');
2019-10-03 11:08:40 +02:00
module.exports = {
...base,
2020-05-01 11:20:19 +02:00
arrowParens: 'always',
overrides: [
{
files: '*.html',
options: { parser: 'babel' },
},
],
2019-10-03 11:08:40 +02:00
};