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:
parent
00095bb427
commit
f110c7b79e
1 changed files with 1 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -4,3 +4,4 @@ __pycache__
|
|||
*.pyc
|
||||
venv/
|
||||
dist/
|
||||
.ruff_cache/
|
||||
|
|
Loading…
Reference in a new issue