From ac2f18b02197f205de87f3df172ddde96fd8100e Mon Sep 17 00:00:00 2001 From: Kumi Date: Sun, 18 Aug 2024 18:54:46 +0200 Subject: [PATCH] chore: update .gitignore to include dist/ directory Added dist/ directory to .gitignore to prevent distribution files from being tracked by Git. This keeps the repository clean and avoids unnecessary clutter from build artifacts. --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index fa4c190..6d97e18 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ *.pyc __pycache__/ venv/ -config.yaml \ No newline at end of file +config.yaml +dist/ \ No newline at end of file