We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1901729 commit 235cfc6Copy full SHA for 235cfc6
bin/cli.mjs
@@ -17,7 +17,6 @@ import createMarkdownParser from '../src/parsers/markdown.mjs';
17
import createNodeReleases from '../src/releases.mjs';
18
import createLinter from '../src/linter/index.mjs';
19
import reporters from '../src/linter/reporters/index.mjs';
20
-import rules from '../src/linter/rules/index.mjs';
21
22
const availableGenerators = Object.keys(generators);
23
@@ -64,7 +63,9 @@ program
64
63
)
65
.addOption(
66
new Option('--disable-rule [rule...]', 'Disable a specific linter rule')
67
- .choices(Object.keys(rules))
+ .choices(
+ Object.keys(rules).concat(Object.keys(singleEntryRules))
68
+ )
69
.default([])
70
71
0 commit comments