2024-11-13 00:59:12 +01:00
|
|
|
export default {
|
2020-07-15 20:45:38 +02:00
|
|
|
bracketSpacing: false,
|
2020-07-14 23:34:29 +02:00
|
|
|
trailingComma: "all",
|
|
|
|
overrides: [
|
|
|
|
{
|
2020-07-24 01:16:46 +02:00
|
|
|
files: ["tsconfig.json"],
|
2020-07-14 23:34:29 +02:00
|
|
|
options: {
|
2020-07-24 01:16:46 +02:00
|
|
|
parser: "json5",
|
|
|
|
quoteProps: "preserve",
|
2020-07-14 23:34:29 +02:00
|
|
|
},
|
|
|
|
},
|
2021-08-20 22:34:59 +02:00
|
|
|
{
|
|
|
|
files: ["*.md"],
|
|
|
|
options: {
|
|
|
|
embeddedLanguageFormatting: "off",
|
|
|
|
},
|
|
|
|
},
|
2020-07-14 23:34:29 +02:00
|
|
|
],
|
2020-07-15 20:45:38 +02:00
|
|
|
};
|