Last active
April 3, 2022 08:26
-
-
Save jhunterkohler/3d2cbe54a6dc09bd4a1955c9a0b99666 to your computer and use it in GitHub Desktop.
General .gitignore base for all projects.
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
# System Files | |
.DS_Store | |
# Editor Files | |
.vscode/ | |
# Build Directories | |
bin/ | |
build/ | |
dist/ | |
out/ | |
# Pre-requisites | |
*.d | |
# Temporary | |
temp.* | |
tmp.* | |
temp | |
tmp | |
# Objects | |
*.o | |
*.ko | |
*.obj | |
*.elf | |
# Precompiled Headers | |
*.gch | |
*.pch | |
# Static Libs | |
*.lib | |
*.a | |
# Shared Libs | |
*.dll | |
*.so | |
*.so.* | |
*.dylib | |
# Binaries | |
*.exe | |
*.out | |
# Debug Info | |
*.dSYM/ | |
*.su | |
# Build Caches | |
__pycache__/ | |
*.pyc | |
*.tsbuildinfo | |
# Coverage | |
.coverage | |
.lcov.info | |
clover.xml | |
coverage/ | |
lcov-report/ | |
*.lcov | |
# Environment | |
.env | |
.*.env | |
.env.* | |
*.env | |
env/ | |
venv/ | |
# Logs | |
*.log | |
*.pid | |
# NPM | |
node_modules/ | |
package-lock.json | |
# Generated Source | |
*.tab.c | |
*.yy.c | |
# Latex | |
*.aux | |
*.fls | |
*.synctex.gz | |
*.fdb_latexmk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment