Files
kpl20/.prettierrc.mjs
Joey Eamigh be3a13eee1 happy bday!
2024-05-26 22:45:45 -04:00

24 lines
444 B
JavaScript

/** @type {import("prettier").Config} */
export default {
bracketSpacing: true,
bracketSameLine: true,
singleQuote: true,
trailingComma: 'all',
arrowParens: 'avoid',
semi: true,
overrides: [
{
files: ['*.ts', '*.js', '*.tsx', '*.jsx', '*.cjs', '*.mjs', '*.astro'],
options: {
printWidth: 120,
},
},
{
files: ['*.html'],
options: {
printWidth: 100,
},
},
],
};