Files
calminer/.gitignore
zwitschi f863808940
All checks were successful
CI / test (pull_request) Successful in 2m21s
fix: update .gitignore to include ruff cache and clarify act runner files
2025-10-29 14:23:24 +01:00

54 lines
543 B
Plaintext

# temp files
.DS_Store
# IDE files
.vscode/
.idea/
# Python files
__pycache__/
*.pyc
*.pyo
# Virtual environments
env/
.venv/
# environment variables
.env
*.env
# except example files
!config/*.env.example
# github instruction files
.github/instructions/
# Python packaging artifacts
build/
dist/
*.egg-info/
pip-wheel-metadata/
# Test artifacts
.coverage
coverage.xml
htmlcov/
.pytest_cache/
# Mypy cache
.mypy_cache/
# Linting cache
.ruff_cache/
# Logs
*.log
logs/
# SQLite database
*.sqlite3
test*.db
# Act runner files
.runner