Repo Prompt
Current filter list v1
# Lock files and dependency specifications
*.lock
*.yarn.lock
*.package-lock.json
*.poetry.lock
*.Pipfile.lock
*.requirements.txt
*.Cargo.lock
*.Gemfile.lock
# Build artifacts and compiled files
*.pyc
*.pyo
*.pyd
*.so
*.dll
*.dylib
*.class
*.o
*.obj
# Package metadata
*.MANIFEST.in
*.setup.cfg
*.setup.py
*.pyproject.toml
# Hash files and checksums
*.sha1
*.md5
*.sha256
*.sha512
# Dependency directories metadata
*.yarn/
*.pnp.*
*.virtualenvs/
*.venv/
*.venv/
# Version control metadata
*.gitattributes
*.gitignore
*.gitmodules
*.svn/
*.hg/
# Container and environment files
*.dockerignore
*.docker-compose*.yml
*.env
*.env.*
*.vinxi
*.svg
*.repo_ignore
.venv
*.webp
Filter List v2
# Cache and build artifacts
__pycache__/
*.py[cod]
*.so
*.dll
*.dylib
*.class
*.egg-info/
dist/
build/
.mypy_cache/
.pytest_cache/
.ruff_cache/
.coverage
htmlcov/
# Lock files
*.lock
poetry.lock
yarn.lock
package-lock.json
Pipfile.lock
Cargo.lock
Gemfile.lock
# Environment and containers
.env
.env.*
*.env.template
.venv/
venv/
.virtualenvs/
.vscode/
.idea/
# Web assets and static files
*.webp
*.jpg
*.png
*.svg
*.ico
# Temporary files
*.swp
*.swo
*.bak
*~
# Editor configs
.editorconfig
.vscode/
.idea/
# Deployment specific
*.dockerignore
# Project specific
static/*
!static/css/
!static/js/
# Configuration files
.flake8
setup.cfg
# Python coverage
.coverage.*
# Test data
**/test_data/
LICENSE.md
Links