feat(gitignore): Ignore .ruff_cache directory

Added the .ruff_cache/ entry to the .gitignore file to prevent Ruff's cache files from being tracked by Git. This change keeps the repository clean from unnecessary file tracking, which is particularly helpful for Python projects using Ruff for linting.
This commit is contained in:
Kumi 2024-05-19 08:44:41 +02:00
parent 00095bb427
commit f110c7b79e
Signed by: kumi
GPG key ID: ECBCC9082395383F

1
.gitignore vendored
View file

@ -4,3 +4,4 @@ __pycache__
*.pyc
venv/
dist/
.ruff_cache/