-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #118 from brharrington/ignore
update ignore file
- Loading branch information
Showing
1 changed file
with
56 additions
and
14 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,26 +1,68 @@ | ||
# Compiled source # | ||
################### | ||
*.com | ||
*.class | ||
*.dll | ||
*.exe | ||
*.o | ||
*.so | ||
|
||
# Tmp files created by vim | ||
*.swp | ||
# Packages # | ||
############ | ||
# it's better to unpack these files and commit the raw source | ||
# git has its own built in compression methods | ||
*.7z | ||
*.dmg | ||
*.gz | ||
*.iso | ||
*.jar | ||
*.rar | ||
*.tar | ||
*.zip | ||
|
||
# Compiled sources | ||
*.class | ||
# Logs and databases # | ||
###################### | ||
*.log | ||
|
||
# Anything in target dirs | ||
build | ||
gh-pages-build | ||
# OS generated files # | ||
###################### | ||
.DS_Store* | ||
ehthumbs.db | ||
Icon? | ||
Thumbs.db | ||
|
||
# Ivy caches | ||
# Editor Files # | ||
################ | ||
*~ | ||
*.swp | ||
|
||
# Gradle Files # | ||
################ | ||
.gradle | ||
.ivy2 | ||
.ivy2.cache | ||
.m2 | ||
|
||
# Intellij | ||
*.iml | ||
# Build output directies | ||
/target | ||
*/target | ||
/build | ||
*/build | ||
|
||
# IntelliJ specific files/directories | ||
out | ||
.idea | ||
*.ipr | ||
*.iws | ||
*.iml | ||
atlassian-ide-plugin.xml | ||
|
||
# anything in .idea dirs | ||
.idea | ||
.idea_modules | ||
out | ||
# Eclipse specific files/directories | ||
.classpath | ||
.project | ||
.settings | ||
.metadata | ||
|
||
# NetBeans specific files/directories | ||
.nbattrs | ||
/bin |