From 8513d37c725509c9e9ec1dbbc431f20d32632cf3 Mon Sep 17 00:00:00 2001 From: Milos Djermanovic Date: Wed, 25 May 2022 13:23:04 +0200 Subject: [PATCH] chore: update Rule typedefs (#15915) --- lib/shared/types.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/shared/types.js b/lib/shared/types.js index 0335423f284..5d9a4e6cf26 100644 --- a/lib/shared/types.js +++ b/lib/shared/types.js @@ -136,7 +136,6 @@ module.exports = {}; /** * @typedef {Object} RuleMetaDocs - * @property {string} category The category of the rule. * @property {string} description The description of the rule. * @property {boolean} recommended If `true` then the rule is included in `eslint:recommended` preset. * @property {string} url The URL of the rule documentation. @@ -147,6 +146,7 @@ module.exports = {}; * @property {boolean} [deprecated] If `true` then the rule has been deprecated. * @property {RuleMetaDocs} docs The document information of the rule. * @property {"code"|"whitespace"} [fixable] The autofix type. + * @property {boolean} [hasSuggestions] If `true` then the rule provides suggestions. * @property {Record} [messages] The messages the rule reports. * @property {string[]} [replacedBy] The IDs of the alternative rules. * @property {Array|Object} schema The option schema of the rule.