fix: streamline npm lint and quality scripts (issue #109) (#116)

Rename 'lint' to 'lint:php-all' for clarity, make 'lint' run all
linters (PHP, JS, CSS), and simplify 'quality' to avoid duplication.

Addresses gemini review feedback from PR #103.
This commit is contained in:
2026-03-19 23:20:17 +00:00
committed by GitHub
parent 8bb4784204
commit 1afa6b71d7

View File

@@ -37,9 +37,10 @@
"fix:php": "composer run-script phpcbf",
"fix:php:simple": "composer run-script phpcbf:simple",
"test:php": "composer run-script test",
"lint": "composer run-script lint",
"lint:php-all": "composer run-script lint",
"lint": "npm run lint:php-all && npm run lint:js && npm run lint:css",
"fix": "composer run-script fix",
"quality": "npm run lint && npm run lint:js && npm run lint:css && npm run test:php"
"quality": "npm run lint && npm run test:php"
},
"repository": {
"type": "git",