diff --git a/.gitignore b/.gitignore index fd3dbb5..c250693 100644 --- a/.gitignore +++ b/.gitignore @@ -6,27 +6,46 @@ .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 @@ -34,3 +53,42 @@ yarn-error.log* # 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/