chore: Remove .claude/settings.local.json from tracking and add to .gitignore

The .claude/settings.local.json file contains Claude Code-specific permission
settings that are user-specific and should not be committed to the repository.

- Remove .claude/settings.local.json from git tracking
- Add .claude/settings.local.json to .gitignore for clean repo state
- Local file remains for user's Claude Code permissions

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-09-24 00:09:23 +02:00
parent 0053fa68ec
commit c6ba9c9308
2 changed files with 3 additions and 13 deletions

View File

@@ -1,13 +0,0 @@
{
"permissions": {
"allow": [
"WebFetch(domain:github.com)",
"Bash(PYTHONPATH=. pytest tests/test_issue_11_workflow_integration.py -v)",
"Bash(PYTHONPATH=. pytest tests/test_issue_11_workflow_integration.py::TestTDDWorkflowIntegration::test_complete_tdd_workflow_cycle -v)",
"Bash(PYTHONPATH=. pytest tests/test_issue_11* -v)",
"Bash(PYTHONPATH=. pytest tests/ -v --tb=short)"
],
"deny": [],
"ask": []
}
}

3
.gitignore vendored
View File

@@ -74,3 +74,6 @@ Thumbs.db
# MarkiTect issue workspace (temporary development files)
.markitect_workspace/
# Claude Code local settings (user-specific permissions)
.claude/settings.local.json