mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2025-12-13 01:36:22 +00:00
16 lines
292 B
JavaScript
16 lines
292 B
JavaScript
/** @type {import('prettier').Config} */
|
|
const config = {
|
|
tabWidth: 2,
|
|
printWidth: 110,
|
|
useTabs: false,
|
|
semi: true,
|
|
singleQuote: true,
|
|
quoteProps: 'consistent',
|
|
trailingComma: 'all',
|
|
bracketSpacing: false,
|
|
arrowParens: 'avoid',
|
|
endOfLine: 'lf'
|
|
}
|
|
|
|
module.exports = config;
|