mirror of
https://github.com/rjNemo/orbital-orbit
synced 2026-06-06 05:26:39 +00:00
12 lines
207 B
JavaScript
12 lines
207 B
JavaScript
/** @type {import("prettier").Config} */
|
|
export default {
|
|
plugins: ["prettier-plugin-astro"],
|
|
overrides: [
|
|
{
|
|
files: "*.astro",
|
|
options: {
|
|
parser: "astro",
|
|
},
|
|
},
|
|
],
|
|
};
|