From ed5050059101415d8931882fd193916c2e257657 Mon Sep 17 00:00:00 2001 From: Jon Wolfe Date: Wed, 8 Dec 2021 15:30:48 -0500 Subject: [PATCH] Add `mocha` prefix to "no-empty-description" rule name in recommended config Fixes: Definition for rule 'no-empty-description' was not found --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index f0bdd4d..2de93c6 100644 --- a/index.js +++ b/index.js @@ -83,7 +83,7 @@ module.exports = { 'mocha/prefer-arrow-callback': 'off', 'mocha/valid-suite-description': 'off', 'mocha/valid-test-description': 'off', - 'no-empty-description': 'error' + 'mocha/no-empty-description': 'error' } } }