Last active
November 29, 2023 07:10
-
-
Save anvie/0016d95343ba3dc0b7fa9dc0262f9a0e to your computer and use it in GitHub Desktop.
Common .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
dist/ | |
build/ | |
# Rust | |
target/ | |
Cargo.lock | |
*.rs.bk | |
# Node.js | |
node_modules/ | |
npm-debug.log | |
# Python | |
__pycache__/ | |
*.pyc | |
*.pyo | |
*.pyd | |
*.egg-* | |
# General | |
.DS_Store | |
*.swp | |
*.swo | |
*.log | |
.idea/ | |
.vscode/ | |
*.iml | |
*.code-workspace | |
*.env | |
.env | |
.env-* | |
output/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment