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.
27 lines
529 B
JavaScript
27 lines
529 B
JavaScript
1 month ago
|
/** @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}',
|
||
|
options: {
|
||
|
tabWidth: 2,
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
}
|