24 lines
444 B
JavaScript
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,
|
|
},
|
|
},
|
|
],
|
|
};
|