Last active
November 12, 2018 20:25
-
-
Save jcklpe/45e30210c4f7777227f48f4381421780 to your computer and use it in GitHub Desktop.
Wordpress 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
# NPM # | |
########## | |
# Ignore all directories called node_modules in current folder and any subfolders. | |
node_modules/ | |
/node_modules/ | |
# Packages # | |
############ | |
*.7z | |
*.dmg | |
*.gz | |
*.bz2 | |
*.iso | |
*.jar | |
*.rar | |
*.tar | |
*.zip | |
*.tgz | |
*.map | |
# Logs and databases # | |
###################### | |
*.log | |
*.sql | |
*.env | |
# OS generated files # | |
###################### | |
**.DS_Store* | |
ehthumbs.db | |
Icon? | |
Thumbs.db | |
._* | |
# Vim generated files # | |
###################### | |
*.un~ | |
# SASS # | |
########## | |
**/.sass-cache | |
**/.sass-cache/* | |
**/.map | |
# Composer # | |
########## | |
!assets/js/vendor/ | |
wpcs/ | |
/vendor/ | |
# Bower # | |
########## | |
assets/bower_components/* | |
# Codekit # | |
########## | |
/codekit-config.json | |
*.codekit | |
**.codekit-cache/* | |
# Compiled Files and Build Dirs # | |
########## | |
/README.html | |
# PhpStrom Project Files # | |
.idea/ | |
library/vendors/composer | |
assets/img/.DS_Store |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment