Files
zulip/prettier.config.js
Shubham Padia f37ffd8937 help-beta: Add prettier plugin for astro files.
Even though we have separate packages for `help-beta`, we have opted to
put the prettier plugin and config for astro files in the main project
itself, so that linting needs to be configured only at one place.
2025-06-30 09:06:18 -07:00

27 lines
568 B
JavaScript

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",
},
},
],
};