From 3520cd1ceb496c5009cdc0645a9181b993ee6c1e Mon Sep 17 00:00:00 2001 From: sigmanificient Date: Thu, 9 Feb 2023 12:36:09 +0100 Subject: [PATCH] chore: Improve gitignore --- .gitignore | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.gitignore b/.gitignore index 9bef454..bf206de 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,17 @@ +# IDE Settings +.idea +.vscode +.vs + +# Python Virtual Environment .venv +venv + +# Python bytecode __pycache__/ +*.py[cod] + +# Coverage report .coverage +coverage.xml +htmlcov