From 8fda3f1163a65018f67f07a061c7ba47ce97d714 Mon Sep 17 00:00:00 2001 From: Marcus Quinn <6428977+marcusquinn@users.noreply.github.com> Date: Tue, 17 Mar 2026 20:37:05 +0000 Subject: [PATCH] fix: add lint:js to quality script (#85) Include JavaScript linting in the quality gate alongside PHP and CSS linting, as suggested in PR #55 review feedback (Gemini, medium). Closes #77 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c934d13..3b7374b 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "test:php": "composer run-script test", "lint": "composer run-script lint", "fix": "composer run-script fix", - "quality": "npm run lint && npm run lint:css && npm run test:php" + "quality": "npm run lint && npm run lint:js && npm run lint:css && npm run test:php" }, "repository": { "type": "git",