We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4dc197 commit 4ea6c9eCopy full SHA for 4ea6c9e
.prettierrc.js
@@ -15,4 +15,12 @@ module.exports = {
15
htmlWhitespaceSensitivity: "ignore", // 指定 HTML 文件的全局空白区域敏感度, "ignore" - 空格被认为是不敏感的
16
jsxSingleQuote: false, // jsx 不使用单引号,而使用双引号
17
trailingComma: "all", // 在多行逗号分隔的语法结构中,尽可能打印尾随逗号(例如,单行数组从来不使用尾随逗号)
18
+ overrides: [
19
+ {
20
+ files: "*.md",
21
+ options: {
22
+ proseWrap: "preserve",
23
+ },
24
25
+ ],
26
};
0 commit comments