From 7101a5c5ec9cfc4c3e8edf7153b68cdbddf214bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20C=C3=A9r=C3=A8s?= Date: Tue, 24 Sep 2024 15:05:08 +0200 Subject: [PATCH] Refactor .gitignore file to include generic ignores and Java/Gradle related ignores --- .gitignore | 88 ++++++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 72 insertions(+), 16 deletions(-) diff --git a/.gitignore b/.gitignore index bba0fbecf..e1aae5568 100644 --- a/.gitignore +++ b/.gitignore @@ -1,25 +1,81 @@ ## ################################################################# -## git ignore +## Generic ignores ## ################################################################# +# OS generated files .DS_Store +Thumbs.db + +# Backup and temporary files *~ *.swp *.lock -profile -build -_build -*.jar -build-* -__pycache__ -*.jar -.ipynb_checkpoints -\#* -.\#* -.vscode +*.log +*.bak +*.tmp +*.old +*.#* +.#* + +# Editor specific files +.vscode/ +.idea/ +*.iml + +## ################################################################# +## Java/Gradle related ignores +## ################################################################# + +# Gradle files +.gradle/ +build/ + +# Maven files +.mvn/ +target/ + +# Java class files *.class -.conda -# maven stuff -target -.gradle +# JAR/WAR files +*.jar +*.war +*.ear + +## ################################################################# +## IDE specific ignores +## ################################################################# + +# IntelliJ IDEA +.idea/ +*.iml +*.iws + +# VSCode +.vscode/ + +# Eclipse +.classpath +.project +.settings/ + +# NetBeans +/nbproject/private/ +/build/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +# Logs and coverage reports +*.log +*.out +*.coverage +*.reports + +## ################################################################# +## Miscellaneous ignores +## ################################################################# + +# Other build directories and generated files +/bin/