I'm using Pixi, a Cargo-like package management tool for Conda/Python Ecosystem which generates YAML Lock File (pixi.lock), in my private project.
Pixi will generate a .gitattributes file when initializing a project:
# SCM syntax highlighting & preventing 3-way merges
pixi.lock merge=binary linguist-language=YAML linguist-generated=true
linguist-generated=true means that pixi.lock is auto-generated and should be hidden from language statistics.
However, when I updated my code to Codeberg, the pixi.lock file was still included in the language statistics.
It seems that this issue have been solved/closed in Forgejo (#7677 in forgejo/forgejo), but still can be reproduced in Codeberg.
### Comment
I'm using [Pixi](https://pixi.sh/latest/), a Cargo-like package management tool for Conda/Python Ecosystem which generates [YAML Lock File (`pixi.lock`)](https://pixi.sh/latest/workspace/lockfile/), in my private project.
Pixi will generate a `.gitattributes` file when initializing a project:
```
# SCM syntax highlighting & preventing 3-way merges
pixi.lock merge=binary linguist-language=YAML linguist-generated=true
```
`linguist-generated=true` means that `pixi.lock` is auto-generated and should be hidden from language statistics.
However, when I updated my code to Codeberg, the `pixi.lock` file was still included in the language statistics.
It seems that this issue have been solved/closed in Forgejo ([#7677 in forgejo/forgejo](https://codeberg.org/forgejo/forgejo/issues/7677)), but still can be reproduced in Codeberg.