/ .gitignore
.gitignore
1 2 # Dependencies 3 node_modules/ 4 5 # Environment and secrets 6 .env 7 .env.* 8 !.env.example 9 10 # Playwright outputs and runtime state 11 test-results/ 12 playwright-report/ 13 blob-report/ 14 playwright/.cache/ 15 playwright/.auth/ 16 17 # Build and coverage outputs 18 dist/ 19 build/ 20 coverage/ 21 22 # Logs 23 *.log 24 npm-debug.log* 25 yarn-debug.log* 26 yarn-error.log* 27 pnpm-debug.log* 28 29 # OS files 30 .DS_Store 31 32 # Editor/IDE files 33 .idea/ 34 35 # Temporary files 36 tmp/ 37 temp/ 38 *.tmp 39 __pycache__/