Skip to content

Commit a98dc87

Browse files
fix: add uv.lock to recognized lockfiles (#143)
Fixes #137 The LockFilesAssessor was missing uv.lock in its list of recognized lockfiles. This caused repositories using uv (Python's modern dependency manager) to incorrectly fail the lock files assessment. Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com> Co-authored-by: Jeremy Eder <jeremyeder@users.noreply.github.com>
1 parent ef47262 commit a98dc87

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/agentready/assessors/stub_assessors.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ def assess(self, repository: Repository) -> Finding:
4040
"pnpm-lock.yaml",
4141
"poetry.lock",
4242
"Pipfile.lock",
43+
"uv.lock",
4344
"requirements.txt",
4445
"Cargo.lock",
4546
"Gemfile.lock",

0 commit comments

Comments
 (0)