Harden repository scans and add LOC comparisons
ci / test (pull_request) Successful in 15s

This commit is contained in:
2026-07-21 17:28:04 +00:00
parent ecc1578b92
commit cd84c68a3e
12 changed files with 279 additions and 29 deletions
+3
View File
@@ -9,4 +9,7 @@ test("shouldIgnoreCountFile skips generic project metadata files", () => {
assert.equal(shouldIgnoreCountFile("/tmp/docker-compose.yml"), true);
assert.equal(shouldIgnoreCountFile("/tmp/src/index.ts"), false);
assert.equal(shouldIgnoreCountFile("/tmp/README.md"), false);
assert.equal(shouldIgnoreCountFile("dist/bundle.min.js"), true);
assert.equal(shouldIgnoreCountFile("vendor/lib/index.ts"), true);
assert.equal(shouldIgnoreCountFile("src/api.generated.ts"), true);
});