From 7f7ef0f4be9f1db6354cca38a594fd5d4774238f Mon Sep 17 00:00:00 2001 From: TheSisb Date: Fri, 22 Sep 2023 10:58:43 -0500 Subject: [PATCH] chore: fix usage of reserved word --- .eslintrc.repo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.repo.js b/.eslintrc.repo.js index 0e9aec27ff..06ac2c6c03 100644 --- a/.eslintrc.repo.js +++ b/.eslintrc.repo.js @@ -24,7 +24,7 @@ module.exports = { { // when linting the repo globally, local packages are not installed, so we need to // manually tell eslint where to look for them - packageDir: [path.join(__dirname, './'), ...cachedPackages.map((package) => package.location)], + packageDir: [path.join(__dirname, './'), ...cachedPackages.map((pkg) => pkg.location)], }, ], },