From b9b4ccea30820e98c49565b0fc8fe21d64f55cbb Mon Sep 17 00:00:00 2001 From: Sam Rose Date: Mon, 18 Mar 2024 10:05:47 +0000 Subject: [PATCH] Remove recommended setting from lints, it doesn't appear to have any effect. --- eslint-local-rules/index.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/eslint-local-rules/index.js b/eslint-local-rules/index.js index d91bb97fa7..f41a8620f0 100644 --- a/eslint-local-rules/index.js +++ b/eslint-local-rules/index.js @@ -25,10 +25,9 @@ module.exports = { docs: { description: "disallow the use of 'test.com' in strings and replace it with 'example.com'", - recommended: true, }, - schema: [], // no options - fixable: "code", // Indicates that this rule supports automatic fixing + schema: [], + fixable: "code", }, create: function (context) { return { @@ -57,7 +56,6 @@ module.exports = { docs: { description: "enforce using the example.com domain for generator.email calls", - recommended: true, }, fixable: "code", schema: [], @@ -92,7 +90,6 @@ module.exports = { type: "suggestion", docs: { description: "reminds you to move .only from tests before committing.", - recommended: true, }, schema: [], },