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 9671ec3 commit 42cfc04Copy full SHA for 42cfc04
eslint-plugin/src/index.ts
@@ -8,13 +8,13 @@ import {
8
TSDocTagSyntaxKind,
9
ParserContext
10
} from "@microsoft/tsdoc";
11
-import { allTsdocMessageIds } from "@microsoft/tsdoc/lib/parser/TSDocMessageId";
12
import * as eslint from "eslint";
13
import * as ESTree from "estree";
14
15
const messageIds: {[x: string]: string} = {};
16
17
-allTsdocMessageIds.forEach((messageId: string) => {
+const defaultTSDocConfiguration: TSDocConfiguration = new TSDocConfiguration()
+defaultTSDocConfiguration.allTsdocMessageIds.forEach((messageId: string) => {
18
messageIds[messageId] = `${messageId}: {{ unformattedText }}`;
19
});
20
0 commit comments