Files
calminer/.gitignore

57 lines
566 B
Plaintext

# temp files
.DS_Store
# IDE files
.vscode/
.idea/
# Python files
__pycache__/
*.pyc
*.pyo
# Virtual environments
env/
.venv/
# environment variables
.env
*.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
data/
*.sqlite3
test*.db
local*.db
# Act runner files
.runner