Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add uv.lock as a TOML file #7006

Merged
merged 2 commits into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions lib/linguist/generated.rb
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ def generated?
go_lock? ||
poetry_lock? ||
pdm_lock? ||
uv_lock? ||
esy_lock? ||
npm_shrinkwrap_or_package_lock? ||
pnpm_lock? ||
Expand Down Expand Up @@ -422,6 +423,13 @@ def pdm_lock?
!!name.match(/pdm\.lock/)
end

# Internal: Is the blob a generated uv.lock?
#
# Returns true or false.
def uv_lock?
!!name.match(/uv\.lock/)
end

# Internal: Is the blob a generated esy lock file?
#
# Returns true or false.
Expand Down
1 change: 1 addition & 0 deletions lib/linguist/languages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7079,6 +7079,7 @@ TOML:
- Pipfile
- pdm.lock
- poetry.lock
- uv.lock
tm_scope: source.toml
ace_mode: toml
codemirror_mode: toml
Expand Down
Loading