mirror of
https://github.com/strapi/strapi.git
synced 2025-07-13 03:51:54 +00:00
14 lines
204 B
JavaScript
14 lines
204 B
JavaScript
/**
|
|
*
|
|
* prettier configuration for front-end files
|
|
*/
|
|
|
|
module.exports = {
|
|
printWidth: 110,
|
|
parser: 'flow',
|
|
useTabs: false,
|
|
singleQuote: true,
|
|
bracketSpacing: true,
|
|
trailingComma: 'all',
|
|
};
|