You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
576 B
JavaScript
28 lines
576 B
JavaScript
/** @type {import("prettier").Config} */
|
|
export default {
|
|
printWidth: 120,
|
|
singleQuote: true,
|
|
quoteProps: 'consistent',
|
|
tabWidth: 4,
|
|
useTabs: false,
|
|
semi: false,
|
|
arrowParens: 'avoid',
|
|
|
|
plugins: ['prettier-plugin-astro'],
|
|
overrides: [
|
|
{
|
|
files: '*.astro',
|
|
options: {
|
|
parser: 'astro',
|
|
},
|
|
},
|
|
{
|
|
files: '*.{yml,yaml,json}',
|
|
excludeFiles: 'package-lock.json',
|
|
options: {
|
|
tabWidth: 2,
|
|
},
|
|
},
|
|
],
|
|
}
|