From a75d3b47b84f59c080c0c8301ae859fa64aa0f0f Mon Sep 17 00:00:00 2001 From: Brandon Scott Date: Wed, 6 Jul 2022 08:02:43 -0400 Subject: [PATCH] docs: remove unused meta.docs.category field in working-with-rules page (#16109) --- docs/src/developer-guide/working-with-rules.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/src/developer-guide/working-with-rules.md b/docs/src/developer-guide/working-with-rules.md index 248dc960ca7..be6d971a390 100644 --- a/docs/src/developer-guide/working-with-rules.md +++ b/docs/src/developer-guide/working-with-rules.md @@ -41,7 +41,6 @@ module.exports = { docs: { description: "disallow unnecessary semicolons", - category: "Possible Errors", recommended: true, url: "https://eslint.org/docs/rules/no-extra-semi" }, @@ -70,7 +69,6 @@ The source file for a rule exports an object with the following properties. * `docs` (object) is required for core rules of ESLint: * `description` (string) provides the short description of the rule in the [rules index](../rules/) - * `category` (string) specifies the heading under which the rule is listed in the [rules index](../rules/) * `recommended` (boolean) is whether the `"extends": "eslint:recommended"` property in a [configuration file](../user-guide/configuring/configuration-files#extending-configuration-files) enables the rule * `url` (string) specifies the URL at which the full documentation can be accessed (enabling code editors to provide a helpful link on highlighted rule violations)