95 lines
962 B
Plaintext
95 lines
962 B
Plaintext
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
|
|
# dependencies
|
|
/node_modules
|
|
/.pnp
|
|
.pnp.js
|
|
.yarn/install-state.gz
|
|
|
|
# pnpm
|
|
.pnpm-store/
|
|
.pnpm-debug.log*
|
|
|
|
# testing
|
|
/coverage
|
|
*.lcov
|
|
.nyc_output
|
|
|
|
# next.js
|
|
/.next/
|
|
/out/
|
|
.next/
|
|
out/
|
|
|
|
# production
|
|
/build
|
|
dist/
|
|
|
|
# misc
|
|
.DS_Store
|
|
*.pem
|
|
*.log
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# local env files
|
|
.env
|
|
.env*.local
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# vercel
|
|
.vercel
|
|
|
|
# typescript
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
*.code-workspace
|
|
|
|
# Python (for agents directory)
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
ENV/
|
|
.venv
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
*.egg
|
|
|
|
# OS
|
|
Thumbs.db
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
._*
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
.cache/
|