2023-05-30 23:51:09 +00:00
|
|
|
// 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,
|
2023-08-08 12:01:38 +00:00
|
|
|
plugins: ['prettier-plugin-astro'],
|
2023-05-30 23:51:09 +00:00
|
|
|
overrides: [
|
|
|
|
{
|
|
|
|
files: ['.*', '*.json', '*.md', '*.toml', '*.yml'],
|
|
|
|
options: {
|
|
|
|
useTabs: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
files: ['**/*.astro'],
|
|
|
|
options: {
|
|
|
|
parser: 'astro',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|