this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: update ignore files and Claude settings

- Add urls.txt to .gitignore (temporary test files)
- Add docs/ to .prettierignore (generated documentation)
- Update .claude/settings.local.json with additional permissions

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>

authored by

alice
Claude
and committed by
TKTK
9d016386 ad9744ea

+17 -2
+10 -2
.claude/settings.local.json
··· 1 1 { 2 2 "permissions": { 3 - "allow": ["WebFetch(domain:developer.mozilla.org)", "Bash(bun run:*)", "Bash(grep:*)", "Bash(rg:*)"], 3 + "allow": [ 4 + "WebFetch(domain:developer.mozilla.org)", 5 + "Bash(bun run:*)", 6 + "Bash(grep:*)", 7 + "Bash(rg:*)", 8 + "Bash(git add:*)", 9 + "Bash(bun test)" 10 + ], 4 11 "deny": [] 5 - } 12 + }, 13 + "enableAllProjectMcpServers": false 6 14 }
+6
.gitignore
··· 37 37 *.xpi 38 38 39 39 *plan.md 40 + 41 + # Local Claude settings 42 + .claude/settings.local.json 43 + 44 + # Temporary files 45 + urls.txt
+1
.prettierignore
··· 1 1 dist 2 + docs