mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 16:14:02 +00:00
20 lines
406 B
JavaScript
20 lines
406 B
JavaScript
export default {
|
|
bracketSpacing: false,
|
|
trailingComma: "all",
|
|
overrides: [
|
|
{
|
|
files: ["tsconfig.json"],
|
|
options: {
|
|
parser: "json5",
|
|
quoteProps: "preserve",
|
|
},
|
|
},
|
|
{
|
|
files: ["*.md"],
|
|
options: {
|
|
embeddedLanguageFormatting: "off",
|
|
},
|
|
},
|
|
],
|
|
};
|