54 lines
628 B
Plaintext
54 lines
628 B
Plaintext
# Global Git ignore for MOG APP project
|
|
# -----------------------------------
|
|
# NOTE: Do not exclude .txt, .csv or .conf files as requested.
|
|
|
|
# OS / Editor metadata
|
|
.DS_Store
|
|
Thumbs.db
|
|
.idea/
|
|
.vscode/
|
|
|
|
# Python bytecode and caches
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
|
|
# Python distribution / packaging
|
|
*.egg-info/
|
|
.eggs/
|
|
.build/
|
|
|
|
# Virtual environments (exclude)
|
|
venv/
|
|
.env/
|
|
.envs/
|
|
.venv/
|
|
*/venv/
|
|
*/.venv/
|
|
*/env/
|
|
|
|
# Node / JavaScript
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Build output
|
|
/dist/
|
|
/build/
|
|
|
|
# Test & coverage output
|
|
.coverage
|
|
coverage/
|
|
htmlcov/
|
|
*.cover
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Misc
|
|
*.swp
|
|
*.swo
|