-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor .gitignore file to include generic ignores and Java/Gradle r…
…elated ignores
- Loading branch information
Showing
1 changed file
with
72 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ |