File tree Expand file tree Collapse file tree 5 files changed +2698
-13
lines changed
Expand file tree Collapse file tree 5 files changed +2698
-13
lines changed Original file line number Diff line number Diff line change @@ -69,6 +69,8 @@ program
6969 * @property {Target[] } target Specifies the generator target mode.
7070 * @property {string } version Specifies the target Node.js version.
7171 * @property {string } changelog Specifies the path to the Node.js CHANGELOG.md file
72+ * @property {boolean } skipLinting Specifies whether to skip linting
73+ * @property {keyof reporters } reporter Specifies the linter reporter
7274 *
7375 * @name ProgramOptions
7476 * @type {Options }
@@ -80,11 +82,11 @@ const {
8082 target = [ ] ,
8183 version,
8284 changelog,
83- skipValidation ,
85+ skipLinting ,
8486 reporter,
8587} = program . opts ( ) ;
8688
87- const linter = skipValidation ? undefined : new Linter ( ) ;
89+ const linter = skipLinting ? undefined : new Linter ( ) ;
8890
8991const { loadFiles } = createMarkdownLoader ( ) ;
9092const { parseApiDocs } = createMarkdownParser ( ) ;
You can’t perform that action at this time.
0 commit comments