From 9928542462c04249a1ef1edb65601fcd0cc9282a Mon Sep 17 00:00:00 2001 From: Ryan Barlow <7389646+ryanbarlow97@users.noreply.github.com> Date: Tue, 22 Sep 2026 19:32:35 +0000 Subject: [PATCH] chore: standardize ignore rules and remove local artifacts --- .gitignore | 63 ++++++++++++++++++++++++++++++++---------------------- 1 file changed, 38 insertions(+), 25 deletions(-) diff --git a/.gitignore b/.gitignore index 96afe12..e37bc5b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,36 +1,49 @@ -# Ignore Maven target directory -target - -# Ignore Eclipse/IntelliJ IDEA/NetBeans project files -*.iml -.idea/ -*.ipr -*.iws -*.bak -*.swp -*.tmp -*.log -*.class - -# NetBeans specific -nbproject/private/ +# Build output +target/ build/ -nbbuild/ +out/ dist/ +nbbuild/ nbdist/ -.nb-gradle/ +*.class +dependency-reduced-pom.xml -# Eclipse specific +# Build dependencies +/.build/ +/*.jar +/libs/*.jar + +# Python caches and environments +__pycache__/ +*.py[cod] +.venv/ +venv/ + +# IDE files +.idea/ +*.iml +*.ipr +*.iws +.vscode/ .project .classpath .settings/ +nbproject/private/ +.nb-gradle/ -# OS-specific files +# Logs and temporary files +*.log +hs_err_pid* +replay_pid* +*.bak +*.swp +*.tmp +*~ + +# Operating system files .DS_Store Thumbs.db +Desktop.ini -# Logs -*.log - -# Downloaded build dependencies -/libs/*.jar +# Local investigation notes and test artifacts +/.scratch/