Last active
March 4, 2022 21:18
-
-
Save Swader/7844111 to your computer and use it in GitHub Desktop.
ultimate-gitignore
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
# Composer | |
vendor | |
composer.phar | |
# IntelliJ - PhpStorm and PyCharm | |
.idea | |
*.ipr | |
*.iws | |
# Eclipse | |
/.project | |
/.settings | |
/.classpath | |
# Logs | |
logs | |
error.log | |
access.log | |
# Netbeans | |
nbproject | |
.nbproject | |
.nbproject/* | |
nbproject/* | |
nbproject/private/ | |
nbbuild/ | |
dist/ | |
nbdist/ | |
nbactions.xml | |
nb-configuration.xml | |
# Mac OSX | |
.DS_Store | |
# Thumbnails | |
._* | |
# Files that might appear on external disk | |
.Spotlight-V100 | |
.Trashes | |
# SublimeText project files | |
/*.sublime-project | |
*.sublime-workspace | |
# Dart | |
packages | |
packages/* | |
# Vagrant | |
.vagrant | |
.vagrant/* | |
.env | |
# OpenZeppelin SDK | |
.openzeppelin/dev-*.json | |
.openzeppelin/.session |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Maven is a little generic, the
target
folder may very well exist in some projects as a normal folder in the root. But nice job on Eclipse, added.