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