Skip to content

Commit

Permalink
Refactor .gitignore file to include generic ignores and Java/Gradle r…
Browse files Browse the repository at this point in the history
…elated ignores
  • Loading branch information
remiceres committed Sep 24, 2024
1 parent 591135b commit 7101a5c
Showing 1 changed file with 72 additions and 16 deletions.
88 changes: 72 additions & 16 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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/

0 comments on commit 7101a5c

Please sign in to comment.