Last active
April 13, 2023 00:44
-
-
Save sbruner/b7f6a418db74b50cf02a2f63efef8e39 to your computer and use it in GitHub Desktop.
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
*~ | |
.gitignore | |
.DS_Store | |
.htaccess | |
.svn | |
.cvs | |
*.bak | |
*.swp | |
*.log | |
*.sql | |
*.sqlite | |
*.zip | |
.yarn* | |
Thumbs.db | |
.sass-cache/ | |
.cache | |
.tmb | |
nginx.conf | |
# npm | |
node_modules/* | |
npm-debug.log/* | |
# composer | |
vendor/* | |
# wordpress specific | |
wp-config.php | |
wp-content/uploads/ | |
wp-content/blogs.dir/ | |
wp-content/upgrade/* | |
wp-content/backup-db/* | |
wp-content/advanced-cache.php | |
wp-content/wp-cache-config.php | |
wp-content/cache/* | |
wp-content/cache/supercache/* | |
wp-content/smush-webp/* | |
# wpengine specific | |
.smushit-status | |
.gitattributes | |
.wpe-devkit | |
.wpe-pull-ignore | |
.wpe-push-ignore | |
.wpengine-conf | |
_wpeprivate | |
wp-content/object-cache.php | |
wp-content/mu-plugins/mu-plugin.php | |
wp-content/mu-plugins/slt-force-strong-passwords.php | |
wp-content/mu-plugins/stop-long-comments.php | |
wp-content/mu-plugins/wpe-cache-plugin.php | |
wp-content/mu-plugins/wpe-cache-plugin* | |
wp-content/mu-plugins/force-strong-passwords* | |
wp-content/mu-plugins/wpengine-common* | |
wp-content/mysql.sql | |
wp-content/mu-plugins/wpengine-security-auditor.php | |
wp-content/mu-plugins/wpe-wp-sign-on-plugin* | |
# localwp specific | |
local-phpinfo.php | |
local-xdebuginfo.php | |
# sucuri | |
.sucuriquarantine | |
# vscode | |
# https://stackoverflow.com/questions/32964920/should-i-commit-the-vscode-folder-to-source-control | |
.vscode/* | |
!.vscode/settings.json | |
!.vscode/tasks.json | |
!.vscode/launch.json | |
!.vscode/extensions.json | |
*.code-workspace | |
# vscode patch | |
# Ignore all local history of file | |
.history | |
.ionide | |
# phpstorm | |
.idea/* | |
# large/disallowed file types | |
# a CDN should be used for these | |
*.hqx | |
*.bin | |
*.exe | |
*.dll | |
*.deb | |
*.dmg | |
*.iso | |
*.img | |
*.msi | |
*.msp | |
*.msm | |
*.mid | |
*.midi | |
*.kar | |
*.mp3 | |
*.ogg | |
*.m4a | |
*.ra | |
*.3gpp | |
*.3gp | |
*.mp4 | |
*.mpeg | |
*.mpg | |
*.mov | |
*.webm | |
*.flv | |
*.m4v | |
*.mng | |
*.asx | |
*.asf | |
*.wmv | |
*.avi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment