@@ -85,8 +85,8 @@ const validFixTypes = new Set(["problem", "suggestion", "layout"]);
8585 *@property {number } warningCount Number of warnings for the result.
8686 *@property {number } fixableErrorCount Number of fixable errors for the result.
8787 *@property {number } fixableWarningCount Number of fixable warnings for the result.
88- *@property {string= } [source] The source code of the file that was linted.
89- *@property {string= } [output] The source code of the file that was linted, with as many fixes applied as possible.
88+ *@property {string } [source] The source code of the file that was linted.
89+ *@property {string } [output] The source code of the file that was linted, with as many fixes applied as possible.
9090 */
9191
9292/**
@@ -329,7 +329,6 @@ function getRule(ruleId, configArrays) {
329329/**
330330 * Collect used deprecated rules.
331331 *@param {ConfigArray[] } usedConfigArrays The config arrays which were used.
332- *@param {Map<string, Object> } ruleMap The rule definitions which were used (built-ins).
333332 *@returns {IterableIterator<DeprecatedRuleInfo> } Used deprecated rules.
334333 */
335334function * iterateRuleDeprecationWarnings ( usedConfigArrays ) {
@@ -530,7 +529,6 @@ class CLIEngine {
530529/**
531530 * Creates a new instance of the core CLI engine.
532531 *@param {CLIEngineOptions } providedOptions The options for this instance.
533- *@constructor
534532 */
535533constructor ( providedOptions ) {
536534const options = Object . assign (