| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- # -----------------------------------------------------------------------------
- # Operating systems
- # -----------------------------------------------------------------------------
- .DS_Store
- .AppleDouble
- .LSOverride
- Thumbs.db
- Desktop.ini
- $RECYCLE.BIN/
- # -----------------------------------------------------------------------------
- # Editors and IDEs
- # -----------------------------------------------------------------------------
- .idea/
- .vscode/*
- !.vscode/extensions.json
- !.vscode/settings.json
- !.vscode/tasks.json
- !.vscode/launch.json
- *.code-workspace
- *.swp
- *.swo
- *~
- # -----------------------------------------------------------------------------
- # Local configuration, secrets, and environment variables
- # Keep templates such as .env.example in version control.
- # -----------------------------------------------------------------------------
- .env
- .env.*
- !.env.example
- !.env.sample
- !.env.template
- *.local
- # -----------------------------------------------------------------------------
- # Logs, temporary files, and runtime data
- # -----------------------------------------------------------------------------
- *.log
- logs/
- *.pid
- *.pid.lock
- *.seed
- *.tmp
- *.temp
- tmp/
- temp/
- .cache/
- # -----------------------------------------------------------------------------
- # Python
- # -----------------------------------------------------------------------------
- __pycache__/
- *.py[cod]
- *$py.class
- *.so
- # Virtual environments
- .venv/
- venv/
- env/
- ENV/
- # Packaging and builds
- build/
- dist/
- downloads/
- *.egg-info/
- .eggs/
- *.egg
- pip-wheel-metadata/
- wheelhouse/
- # Test, coverage, type-checker, and linter caches
- .pytest_cache/
- .coverage
- .coverage.*
- coverage.xml
- htmlcov/
- .tox/
- .nox/
- .hypothesis/
- .mypy_cache/
- .pyre/
- .pytype/
- .ruff_cache/
- # Framework and notebook artifacts
- *.mo
- *.pot
- instance/
- .scrapy/
- .ipynb_checkpoints/
- # -----------------------------------------------------------------------------
- # Node.js / JavaScript / TypeScript
- # -----------------------------------------------------------------------------
- node_modules/
- bower_components/
- # Package manager caches and diagnostics
- .npm/
- .yarn/cache/
- .yarn/unplugged/
- .yarn/build-state.yml
- .yarn/install-state.gz
- .pnpm-store/
- .pnp.*
- npm-debug.log*
- yarn-debug.log*
- yarn-error.log*
- pnpm-debug.log*
- # Build outputs and framework caches
- lib-cov/
- coverage/
- .nyc_output/
- .parcel-cache/
- .next/
- .nuxt/
- .output/
- .svelte-kit/
- .astro/
- .vite/
- .docusaurus/
- .serverless/
- .fusebox/
- .dynamodb/
- .turbo/
- .nx/
- out/
- # TypeScript incremental build information
- *.tsbuildinfo
- # -----------------------------------------------------------------------------
- # Miscellaneous generated artifacts
- # -----------------------------------------------------------------------------
- *.bak
- *.orig
- *.rej
- *.patch
- *.tgz
|