No Description

.gitignore 322B

123456789101112131415161718192021222324252627282930313233343536
  1. # Environnement Python
  2. .venv/
  3. __pycache__/
  4. *.pyc
  5. *.pyo
  6. *.pyd
  7. .Python
  8. *.egg-info/
  9. dist/
  10. build/
  11. # Variables d'environnement — NE JAMAIS committer
  12. .env
  13. # Mypy
  14. .mypy_cache/
  15. *.pyi
  16. # Pytest
  17. .pytest_cache/
  18. .coverage
  19. htmlcov/
  20. reports/
  21. # IDE
  22. .vscode/settings.json
  23. .idea/
  24. *.swp
  25. *.swo
  26. # OS
  27. .DS_Store
  28. Thumbs.db
  29. # Docker
  30. *.log

Powered by TurnKey Linux.