mirror of
https://codeberg.org/JasterV/jaster.xyz.git
synced 2026-04-26 18:10:01 +00:00
19 lines
347 B
JavaScript
19 lines
347 B
JavaScript
// .prettierrc.mjs
|
|
/** @type {import("prettier").Config} */
|
|
export default {
|
|
plugins: ["prettier-plugin-astro"],
|
|
overrides: [
|
|
{
|
|
files: ["**/tsconfig.json", "**/tsconfig.*.json"],
|
|
options: {
|
|
parser: "jsonc",
|
|
},
|
|
},
|
|
{
|
|
files: "*.astro",
|
|
options: {
|
|
parser: "astro",
|
|
},
|
|
},
|
|
],
|
|
};
|