Skip to content

Commit 012c76e

Browse files
committed
microsoft-typescript/object-literal-surrounding-space
1 parent f1a399b commit 012c76e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.eslintrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"@typescript-eslint/type-annotation-spacing": "error",
5151
"@typescript-eslint/unified-signatures": "off",
5252

53-
"microsoft-typescript/object-literal-surrounding-space": "off",
53+
"microsoft-typescript/object-literal-surrounding-space": "error",
5454
"microsoft-typescript/no-type-assertion-whitespace": "error",
5555
"microsoft-typescript/type-operator-spacing": "off",
5656
"microsoft-typescript/only-arrow-functions": "off",

scripts/word2md.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -388,8 +388,8 @@ function convertDocumentToMarkdown(doc: Word.Document): string {
388388
findReplace("&lt;", { style: "Terminal" }, "<", {});
389389
findReplace("", { font: { subscript: true } }, "<sub>^&</sub>", { font: { subscript: false } });
390390
findReplace("", { style: "Code Fragment" }, "`^&`", { style: -66 /* default font */ });
391-
findReplace("", { style: "Production" }, "*^&*", { style: -66 /* default font */});
392-
findReplace("", { style: "Terminal" }, "`^&`", { style: -66 /* default font */});
391+
findReplace("", { style: "Production" }, "*^&*", { style: -66 /* default font */ });
392+
findReplace("", { style: "Terminal" }, "`^&`", { style: -66 /* default font */ });
393393
findReplace("", { font: { bold: true, italic: true } }, "***^&***", { font: { bold: false, italic: false } });
394394
findReplace("", { font: { italic: true } }, "*^&*", { font: { italic: false } });
395395

0 commit comments

Comments
 (0)