From 9e01fb16d7311b607ee2dcb06bdcee0f3e605b08 Mon Sep 17 00:00:00 2001 From: stroblme Date: Fri, 21 Aug 2026 14:39:09 +0200 Subject: [PATCH] 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) Claude-Session: https://claude.ai/code/session_01Uq8mtNb97A7praJLyeEYgs --- frontend/biome.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/biome.json b/frontend/biome.json index 10b20a2..5058819 100644 --- a/frontend/biome.json +++ b/frontend/biome.json @@ -10,6 +10,8 @@ "!**/src/client/**/*", "!**/src/components/ui/**/*", "!**/playwright-report", + "!**/playwright/.auth", + "!**/test-results", "!**/playwright.config.ts" ] },