chore: убрать __pycache__ из трекинга, расширить .gitignore (pyc/бинарники/мусор)

This commit is contained in:
“Naeel”
2026-08-17 08:20:44 +04:00
parent ed498a4f6e
commit 57c0fcae3d
7 changed files with 33 additions and 0 deletions
+33
View File
@@ -5,11 +5,36 @@
/sqs-consumer
bin/
ws-probe/ws-probe
/iot-service
# Go
*.exe
*.test
*.out
*.prof
*.cover
# Python — кэш и генерируемые файлы
__pycache__/
*.py[cod]
*$py.class
.pytest_cache/
.mypy_cache/
.ruff_cache/
.tox/
.venv/
venv/
htmlcov/
.coverage
.coverage.*
*.egg-info/
build/
dist/
.eggs/
# Логи
*.log
logs/
# IDE
.idea/
@@ -21,3 +46,11 @@ ws-probe/ws-probe
# OS
.DS_Store
Thumbs.db
# Прочие генерируемые/временные
*.tmp
*.temp
*.bak
*.orig
*.swp
.DS_Store