From f110c7b79eefce003e41ea06c91800b90d99305b Mon Sep 17 00:00:00 2001 From: Kumi Date: Sun, 19 May 2024 08:44:41 +0200 Subject: [PATCH] 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. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 2c07b91..e08e929 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ __pycache__ *.pyc venv/ dist/ +.ruff_cache/