We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f05cdc5 commit 9b12fbeCopy full SHA for 9b12fbe
1 file changed
prettier.config.js
@@ -16,4 +16,10 @@ module.exports = {
16
arrowParens: 'always',
17
proseWrap: 'always',
18
endOfLine: 'lf',
19
+
20
+ overrides: [
21
+ // Disable formatting JSONC with trailing commas (discouraged by the format)
22
+ // See https://github.com/prettier/prettier/issues/15956#issuecomment-1987146114
23
+ { files: ['*.jsonc'], options: { trailingComma: 'none' } },
24
+ ],
25
}
0 commit comments