Last active
October 7, 2017 09:00
-
-
Save ariesmcrae/3be134d994d332c7e54254fc72e69cb2 to your computer and use it in GitHub Desktop.
.gitignore
This file contains hidden or 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
# Compiled source # | |
###################### | |
*.class | |
# Packages # | |
###################### | |
*.jar | |
# Logs # | |
###################### | |
*.log | |
logs/ | |
log/ | |
# OS # | |
###################### | |
.DS_Store | |
.DS_Store? | |
# Maven # | |
###################### | |
target/ | |
generated | |
**/bin | |
output | |
*.retry | |
# Eclipse # | |
###################### | |
**/.settings | |
**/.project | |
**/.classpath | |
**/.springBeans | |
.metadata/ | |
.apt_generated | |
.factorypath | |
# Intellij IDEA # | |
###################### | |
**/.idea/* | |
**/*.iml | |
*.iws | |
*.ipr | |
# Emacs # | |
###################### | |
*~ | |
*\# | |
\#* | |
# Vi # | |
###################### | |
.*.swp | |
# Other IDEs # | |
###################### | |
**/.vscode | |
build | |
# Avoid ignoring Maven wrapper jar file (.jar files are usually ignored) | |
!/.mvn/wrapper/maven-wrapper.jar | |
# See https://help.github.com/ignore-files/ for more about ignoring files. | |
# dependencies | |
/node_modules | |
# testing | |
/coverage | |
# production | |
/build | |
# misc | |
.DS_Store | |
.env.local | |
.env.development.local | |
.env.test.local | |
.env.production.local | |
npm-debug.log* | |
yarn-debug.log* | |
yarn-error.log* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment