Last active
August 29, 2015 14:06
-
-
Save jelmerdemaat/cd4ece7dcfee042626ea to your computer and use it in GitHub Desktop.
Basic .gitignore rules for node/sass project
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
# Exclude build folders | |
dist/ | |
build/ | |
app/ | |
# Exclude node modules | |
node_modules/ | |
# Exclude sass cache files | |
.sass-cache/ | |
*.sassc | |
*.scssc | |
# Exclude log and backup files | |
*.log | |
*.bkp | |
*.backup | |
# Exclude system bloat | |
*.DS_Store |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment