Last active
May 9, 2018 18:27
-
-
Save DStereo/caf5dad6d8b099374e58fca2e8f923e7 to your computer and use it in GitHub Desktop.
Simple template of .gitignore file.
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
## IDE AND EDITORS | |
# IDEA | |
.idea/ | |
# NETBEANS | |
nbproject/ | |
# SUBLIME TEXT | |
*.sublime-project | |
*.sublime-workspace | |
# VSCODE | |
.vscode/ | |
# VISUAL STUDIO | |
.vs/ | |
# NODE | |
node/ | |
node_modules/ | |
# BUILD | |
dist/ | |
dest/ | |
build/ | |
public/ | |
*build.* | |
# LOGS | |
*.log | |
# PYTHON | |
__pycache__/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment