Skip to content

Commit d490c96

Browse files
committed
Scope the screenshot ignore rule to the repository root
The previous "*.png" entry in .gitignore matched every PNG file anywhere in the tree, including the existing screenshots under docs/ and the default avatar at assets/default-screenshot.png, and would have silently dropped any future PNG asset added by a contributor. Replace it with "/*.png", which only ignores the ad-hoc Playwright screenshots that land in the repository root during local front-end development. Addresses #458 (comment) Assisted-by: Claude Code:claude-opus-4-7
1 parent 1e2eaed commit d490c96

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ mise.local.toml
99
**/skills/npm-*
1010
src/public/uno.css
1111
.playwright-mcp/
12-
*.png
12+
/*.png
1313

1414
coverage/**
1515
!coverage/.gitkeep

0 commit comments

Comments
 (0)