/** @type {import("prettier").Options} */
module.exports = {
printWidth: 120,
tabWidth: 2,
semi: true,
singleQuote: true,
jsxSingleQuote: true,
trailingComma: 'all',
bracketSpacing: true,
arrowParens: 'avoid',
vueIndentScriptAndStyle: true,
endOfLine: 'lf'
};