Description: silence seemingly false positives of no-shadow
Author: Jonas Smedegaard <dr@jones.dk>
Last-Update: 2022-02-25
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/tests/lib/configs/recommended.js
+++ b/tests/lib/configs/recommended.js
@@ -7,7 +7,10 @@
 
 describe("node/recommended config", () => {
     describe("in CJS directory", () => {
+        /* eslint-disable no-shadow */
         const root = path.resolve(__dirname, "../../fixtures/configs/cjs/")
+        /* eslint-enable no-shadow */
+
 
         /** @type {CLIEngine} */
         let engine = null
@@ -84,7 +87,9 @@
     })
 
     describe("in ESM directory", () => {
+        /* eslint-disable no-shadow */
         const root = path.resolve(__dirname, "../../fixtures/configs/esm/")
+        /* eslint-enable no-shadow */
 
         /** @type {CLIEngine} */
         let engine = null
