Last active
November 16, 2022 15:25
-
-
Save Teddy95/5c2f8bfa3fbbb3cbb7b51ea68ebdb004 to your computer and use it in GitHub Desktop.
Default .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
# .gitignore from: https://gist.github.com/Teddy95/5c2f8bfa3fbbb3cbb7b51ea68ebdb004 | |
# Environment variables | |
*.env | |
.env | |
env | |
# Logfiles | |
logs | |
*.log | |
# Ignore compiled Marko files | |
*.marko.js | |
# Ignore Lasso chached files | |
.cache/ | |
static/ | |
# Production build | |
www/ | |
dist/ | |
# Composer | |
composer.phar | |
/vendor/ | |
# node-rfc SAP | |
dev_rfc.trc | |
# Node.js | |
node_modules | |
npm-debug.log* | |
yarn-debug.log* | |
yarn-error.log* | |
# ApacheCordova | |
cordova/bin/* | |
!/cordova/plugins | |
!/cordova/plugins/android.json | |
!/cordova/plugins/fetch.json | |
cordova/plugins/* | |
cordova/platforms/* | |
# Cordova | |
/cordova/platforms | |
/cordova/plugins | |
# Terraform | |
**/.terraform/* | |
*.tfstate | |
*.tfstate.* | |
crash.log | |
crash.*.log | |
# *.tfvars | |
# *.tfvars.json | |
# override.tf | |
# override.tf.json | |
# *_override.tf | |
# *_override.tf.json | |
# .terraformrc | |
# terraform.rc | |
# # Visual Studio Code | |
# .vscode/* | |
# !.vscode/settings.json | |
# !.vscode/tasks.json | |
# !.vscode/launch.json | |
# !.vscode/extensions.json | |
# .history | |
# Xcode | |
xcuserdata/ | |
/*.gcno | |
*.xcodeproj/* | |
!*.xcodeproj/project.pbxproj | |
!*.xcodeproj/xcshareddata/ | |
!*.xcworkspace/contents.xcworkspacedata | |
**/xcshareddata/WorkspaceSettings.xcsettings | |
# Windows | |
Thumbs.db | |
Thumbs.db:encryptable | |
ehthumbs.db | |
ehthumbs_vista.db | |
*.stackdump | |
[Dd]esktop.ini | |
$RECYCLE.BIN/ | |
# MacOS | |
.DS_Store | |
.AppleDouble | |
.LSOverride | |
Icon | |
._* | |
.DocumentRevisions-V100 | |
.fseventsd | |
.Spotlight-V100 | |
.TemporaryItems | |
.Trashes | |
.VolumeIcon.icns | |
.com.apple.timemachine.donotpresent | |
# Linux | |
*~ | |
.fuse_hidden* | |
.directory | |
.Trash-* | |
.nfs* | |
# Runtime data | |
pids | |
*.pid | |
*.seed | |
*.pid.lock |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment