Last active
November 2, 2024 15:56
-
-
Save aaronedev/d39815510ce0b4d980d3683f8c8c92fe to your computer and use it in GitHub Desktop.
gitignore starter template
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
# Windows | |
Thumbs.db | |
ehthumbs.db | |
Desktop.ini | |
$RECYCLE.BIN/ | |
# Node.js | |
node_modules/ | |
npm-debug.log* | |
yarn-debug.log* | |
yarn-error.log* | |
.pnpm-debug.log* | |
.cache/ | |
# macOS | |
.DS_Store | |
.AppleDouble | |
.LSOverride | |
# Linux | |
*.swp | |
*.swo | |
*.swn | |
*.bak | |
*~ | |
# Logs | |
logs/ | |
*.log | |
# IDEs and editors | |
.vscode/ | |
.idea/ | |
*.sublime-project | |
*.sublime-workspace | |
# Environment variables | |
.env | |
.env.local | |
.env.*.local | |
# Python | |
*.py[cod] | |
__pycache__/ | |
*.so | |
*.egg | |
*.egg-info/ | |
dist/ | |
build/ | |
*.pyo | |
*.pyd | |
.venv/ | |
env/ | |
venv/ | |
ENV/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment