14 lines
204 B
JavaScript
Raw Normal View History

2018-05-07 12:07:16 +02:00
/**
*
* prettier configuration for front-end files
*/
module.exports = {
printWidth: 110,
parser: 'flow',
2018-05-07 14:52:48 +02:00
useTabs: false,
2018-05-07 12:07:16 +02:00
singleQuote: true,
bracketSpacing: true,
trailingComma: 'all',
};