refactor: replace biome with prettier

This commit is contained in:
saicaca
2024-08-03 17:06:49 +08:00
parent b358bddb10
commit 411947bc4e
3 changed files with 66 additions and 6 deletions

12
.prettierrc.mjs Normal file
View File

@@ -0,0 +1,12 @@
/** @type {import("prettier").Config} */
export default {
plugins: ['prettier-plugin-astro'],
overrides: [
{
files: '*.astro',
options: {
parser: 'astro',
},
},
],
};