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

Mark pixi lock files as generated #7111

Merged
merged 1 commit into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
Mark pixi lock files as generated
Pixi is a cross-platform package manager for the conda ecosystem.
It uses a lockfile called pixi.lock, which should be counted as
generated code.
  • Loading branch information
freundTech committed Oct 28, 2024
commit 8397a779433d797b4315be95321326f12f5c615b
8 changes: 8 additions & 0 deletions lib/linguist/generated.rb
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ def generated?
poetry_lock? ||
pdm_lock? ||
uv_lock? ||
pixi_lock? ||
esy_lock? ||
npm_shrinkwrap_or_package_lock? ||
pnpm_lock? ||
Expand Down Expand Up @@ -431,6 +432,13 @@ def uv_lock?
!!name.match(/uv\.lock/)
end

# Internal: Is the blob a generated pixi lock file?
#
# Returns true or false.
def pixi_lock?
!!name.match(/pixi\.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 @@ -8257,6 +8257,7 @@ YAML:
- ".gemrc"
- CITATION.cff
- glide.lock
- pixi.lock
- yarn.lock
ace_mode: yaml
codemirror_mode: yaml
Expand Down
Loading
Loading