| # Version control | |
| .git | |
| .gitignore | |
| .gitattributes | |
| **/node_modules | |
| **/.next | |
| **/dist | |
| **/__pycache__ | |
| **/*.pyc | |
| .git | |
| .env* | |
| .vscode | |
| # Dependencies | |
| **/node_modules | |
| **/.pnp | |
| **/.pnp.js | |
| **/yarn.lock | |
| **/package-lock.json | |
| # Testing | |
| **/coverage | |
| # Next.js | |
| **/.next/ | |
| **/out/ | |
| **/build | |
| **/.swc/ | |
| # Python | |
| **/__pycache__/ | |
| **/*.py[cod] | |
| **/*$py.class | |
| **/*.so | |
| **/.Python | |
| **/env/ | |
| **/build/ | |
| **/develop-eggs/ | |
| **/dist/ | |
| **/downloads/ | |
| **/eggs/ | |
| **/.eggs/ | |
| **/lib/ | |
| **/lib64/ | |
| **/parts/ | |
| **/sdist/ | |
| **/var/ | |
| **/wheels/ | |
| **/*.egg-info/ | |
| **/.installed.cfg | |
| **/*.egg | |
| # IDE | |
| .idea | |
| .vscode | |
| *.swp | |
| *.swo | |
| # OS | |
| .DS_Store | |
| Thumbs.db |