From e652f0a8fd8f29f4ce94fefdcc3781aaf5435f66 Mon Sep 17 00:00:00 2001 From: Bruno Borges Date: Mon, 22 Jun 2026 17:52:25 -0400 Subject: [PATCH] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 116929a9..73faa05f 100644 --- a/package.json +++ b/package.json @@ -11,8 +11,8 @@ "build": "ncc build -o dist/setup src/setup-java.ts && ncc build -o dist/cleanup src/cleanup-java.ts", "format": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --write \"**/*.{ts,yml,yaml}\"", "format-check": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --check \"**/*.{ts,yml,yaml}\"", - "lint": "eslint", - "lint:fix": "eslint --fix", + "lint": "eslint \"src/**/*.ts\" \"__tests__/**/*.ts\"", + "lint:fix": "eslint \"src/**/*.ts\" \"__tests__/**/*.ts\" --fix", "prerelease": "npm run-script build", "release": "git add -f dist/setup/index.js dist/cleanup/index.js", "test": "jest"