From d72147e383a1de30e6862fd4a897fbd73e14df79 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Mon, 27 Jul 2026 05:44:39 +0900 Subject: [PATCH] .gitignore: organize, add more offenders --- .gitignore | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index af0db6a..0718252 100644 --- a/.gitignore +++ b/.gitignore @@ -1,29 +1,41 @@ +# Various python cache and build files __pycache__/ *.py[cod] *$py.class -worblehat.sqlite +# Build and test system outputs +.coverage +.coverage.* +dist/ +htmlcov +src/worblehat/_version.py +test-report/ +worblehat.egg-info -.env +# Virtual environment files .venv -env/ -venv/ ENV/ env.bak/ +env/ venv.bak/ +venv/ +# Local environment files .env .env.development.local .env.test.local .env.production.local .env.local -dist/ +# Ruff +.ruff_cache +# Nix stuff result - -config.toml - *.qcow2 -test-report/ +# Development config +config.toml + +# Development database +worblehat.sqlite