22 lines
367 B
JavaScript
22 lines
367 B
JavaScript
// Typescript file would be better but it's currently experimental
|
|
|
|
const config = {
|
|
semi: false,
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
printWidth: 90,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
plugins: ['prettier-plugin-astro'],
|
|
overrides: [
|
|
{
|
|
files: '*.astro',
|
|
options: {
|
|
parser: 'astro',
|
|
},
|
|
},
|
|
],
|
|
}
|
|
|
|
export default config
|