Files
zulip/prettier.config.js
Anders Kaseorg 58df0e519f prettier: Type-check Prettier configuration.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2025-09-10 09:44:44 -07:00

30 lines
623 B
JavaScript

// @ts-check
/** @type {import("prettier").Config} */
export default {
bracketSpacing: false,
trailingComma: "all",
plugins: ["prettier-plugin-astro"],
overrides: [
{
files: ["tsconfig.json"],
options: {
parser: "json5",
quoteProps: "preserve",
},
},
{
files: ["*.md"],
options: {
embeddedLanguageFormatting: "off",
},
},
{
files: "*.astro",
options: {
parser: "astro",
},
},
],
};