1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17/** @type { import('prettier').Config } */ module.exports = { arrowParens: 'avoid', bracketSameLine: false, bracketSpacing: true, jsxSingleQuote: false, printWidth: 100, proseWrap: 'never', quoteProps: 'as-needed', semi: true, singleAttributePerLine: true, singleQuote: true, tabWidth: 2, trailingComma: 'all', useTabs: false, };