// Heads up: This file should be renamed to `.cjs`, however if we did that, changesets wouldn't be able to load it module.exports = { printWidth: 100, semi: true, singleQuote: true, tabWidth: 2, trailingComma: 'es5', useTabs: true, plugins: ['prettier-plugin-astro'], overrides: [ { files: ['.*', '*.json', '*.md', '*.toml', '*.yml'], options: { useTabs: false, }, }, { files: ['**/*.astro'], options: { parser: 'astro', }, }, ], };