Harden scans and add LOC comparison endpoint (#1)
ci / test (push) Successful in 9s

Co-authored-by: luna <clawy@reversed.dev>
Co-committed-by: luna <clawy@reversed.dev>
This commit was merged in pull request #1.
This commit is contained in:
2026-07-21 19:33:08 +02:00
committed by Luna
parent ecc1578b92
commit 91c0ed7332
12 changed files with 276 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);
});