-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy patheslint-doc-generator.config.ts
More file actions
20 lines (19 loc) · 903 Bytes
/
eslint-doc-generator.config.ts
File metadata and controls
20 lines (19 loc) · 903 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import type { GenerateOptions } from "eslint-doc-generator";
import { format } from "prettier";
export default {
configEmoji: [
["lite", "☑️"],
["currying", ""],
["noExceptions", ""],
["noMutations", ""],
["noOtherParadigms", ""],
["noStatements", ""],
],
ignoreConfig: ["all", "off", "disableTypeChecked"],
ruleDocSectionInclude: ["Rule Details"],
ruleListSplit: "meta.docs.category",
postprocess: (doc) =>
format(doc, {
parser: "markdown",
}),
} satisfies GenerateOptions;