From df06e00ae3ea04c63e58d62547574a5cd552e6c0 Mon Sep 17 00:00:00 2001 From: Daniel Rojas Date: Sat, 23 Oct 2021 11:52:59 +0200 Subject: [PATCH] Restructure and update `.gitignore` --- .gitignore | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index 7484ecb..bd7cff4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,15 +1,20 @@ +# OS-specific files .DS_Store +desktop.ini +Thumbs.db + +# Development aids .idea/ -.eggs -__pycache__ -.*.swp -*.egg-info -*.pyc -build -data -dist +temp/ venv/ .venv/ -desktop.ini -thumbs.db -temp/ + +# Build/compile/release artifacts +build/ +dist/ +*.egg-info +*.pyc + +# Other temporary files +__pycache__ +.*.swp