reactjsquality-check911 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/commands/coverage.js +1 -1
- package/commands/init.js +1 -1
- package/package.json +1 -1
package/commands/coverage.js
CHANGED
package/commands/init.js
CHANGED
|
@@ -18,7 +18,7 @@ const CHECKS = [
|
|
|
18
18
|
{ id: "eslint", label: "ESLint — code style and error rules on staged chunks" },
|
|
19
19
|
{ id: "codesmells", label: "Code Smells — SonarJS: cognitive complexity, duplicate code, dead code" },
|
|
20
20
|
{ id: "vulnerabilities", label: "Vulnerabilities — eslint-security: eval/injection/unsafe regex + npm audit CVE scan on push" },
|
|
21
|
-
{ id: "coverage", label: "Coverage — Jest line coverage (
|
|
21
|
+
{ id: "coverage", label: "Coverage — Jest line coverage (95% threshold per changed file)" },
|
|
22
22
|
{ id: "playwright", label: "Playwright — E2E smoke tests run before every git push" }
|
|
23
23
|
];
|
|
24
24
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reactjsquality-check911",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "GitHub Copilot agent for React/JS projects — enforces ESLint, Jest coverage, and Playwright tests on every commit and push",
|
|
5
5
|
"bin": {
|
|
6
6
|
"reactjsquality-check911": "./bin/reactjsquality-check911.js"
|