Keep Playwright's own artifacts out of the lint

A checking lint reports what a writing one silently reformatted: after any test
run, `playwright/.auth/user.json` and `test-results/.last-run.json` are written
by Playwright and failed `make lint`. Both are gitignored, and `playwright-report`
was already excluded beside them.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Uq8mtNb97A7praJLyeEYgs
This commit is contained in:
2026-08-21 14:39:09 +02:00
co-authored by Claude Opus 5
parent 973fc01dc1
commit b6ed8029b6
+2
View File
@@ -10,6 +10,8 @@
"!**/src/client/**/*",
"!**/src/components/ui/**/*",
"!**/playwright-report",
"!**/playwright/.auth",
"!**/test-results",
"!**/playwright.config.ts"
]
},