From e3c76036a8f689c3b2db17ac34b38a835eff1ad6 Mon Sep 17 00:00:00 2001 From: Khushbu Maheshwari Date: Fri, 5 Jun 2026 16:26:50 +0530 Subject: [PATCH 1/2] PLAT-16543 Strengthen gitignore rules --- .gitignore | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index a0aa2a33..562210e3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,14 +1,17 @@ .aws-sam -maze-runner.log maze_output Gemfile.lock +# Python compiled files *.py[co] +*.pyd +__pycache__/ # Packages *.egg *.egg* *.egg-info +*.whl dist build eggs @@ -25,6 +28,8 @@ pip-log.txt # Unit test / coverage reports .coverage* .tox +.pytest_cache/ +.mypy_cache/ htmlcov #Translations @@ -45,3 +50,26 @@ bin include lib pyvenv.cfg + +# Logs +*.log + +# Lock files +*.lock + +# Environment & secrets +.env +.env.* + +# OS files +.DS_Store +Thumbs.db + +# Ruby version manager (for Maze Runner local testing) +.ruby-version + +# Gitleaks +.gitleaks.toml +.pre-commit-config.yaml +.gitleaks-baseline.json + From 65724f1e5629115b9f4ca9722b36ed61fbd8a825 Mon Sep 17 00:00:00 2001 From: Khushbu Maheshwari Date: Mon, 8 Jun 2026 19:00:49 +0530 Subject: [PATCH 2/2] remove duplicate entry from gitignore file --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index 562210e3..54bf33ec 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ .aws-sam maze_output -Gemfile.lock # Python compiled files *.py[co]