mirror of
https://github.com/FuzzingLabs/fuzzforge_ai.git
synced 2026-02-12 21:12:56 +00:00
64 lines
702 B
Plaintext
64 lines
702 B
Plaintext
# FuzzForge CLI specific .gitignore
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
env/
|
|
|
|
# UV package manager - keep uv.lock for CLI
|
|
# uv.lock # Commented out - we want to keep this for reproducible CLI builds
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Testing
|
|
.coverage
|
|
.pytest_cache/
|
|
.tox/
|
|
htmlcov/
|
|
|
|
# MyPy
|
|
.mypy_cache/
|
|
|
|
# Local development
|
|
local_config.yaml
|
|
.env.local
|
|
|
|
# Generated files
|
|
*.log
|
|
*.tmp
|
|
|
|
# CLI specific
|
|
# Don't ignore uv.lock in CLI as it's needed for reproducible builds
|
|
!uv.lock |