mirror of
https://github.com/encounter/adk-python.git
synced 2026-07-09 18:19:28 -07:00
chore: Ignore AI coding tool project-specific configs in .gitignore
Merge https://github.com/google/adk-python/pull/3333 ## Summary Add ignore patterns for popular AI coding assistant configuration files to prevent committing developer-specific settings. This aligns with the project's approach of providing `AGENTS.md` as a general starting point that developers can symlink or copy and customize locally. ## Changes Added `.gitignore` patterns for 10 popular AI coding tools: - **Claude Code** - `.claude/`, `CLAUDE.md` - **Cursor** - `.cursor/`, `.cursorrules`, `.cursorignore` - **Windsurf** - `.windsurfrules` - **Aider** - `.aider*` - **Continue.dev** - `.continue/` - **Codeium** - `.codeium/` - **GitHub Next** - `.githubnext/` - **Roo Code** - `.roo/`, `.rooignore` - **Bolt** - `.bolt/` - **v0** - `.v0/` ## Rationale Each developer may want different AI tool configurations and personal instructions. By ignoring these files, we: - Prevent accidental commits of personal AI assistant settings - Keep the repository clean of developer-specific configurations - Allow developers to customize their AI tools without affecting others - Maintain consistency with the project's `AGENTS.md` approach Co-authored-by: Yvonne Yu <yyyu@google.com> COPYBARA_INTEGRATE_REVIEW=https://github.com/google/adk-python/pull/3333 from google:chore/ignore-ai-tool-configs 0abe4ccdf130ac93c3d2c353556f0ce7c305c429 PiperOrigin-RevId: 825682646
This commit is contained in:
committed by
Copybara-Service
parent
04dbc42e50
commit
d45b31fb45
+17
@@ -98,3 +98,20 @@ Thumbs.db
|
||||
*.bak
|
||||
*.tmp
|
||||
*.temp
|
||||
|
||||
# AI Coding Tools - Project-specific configs
|
||||
# Developers should symlink or copy AGENTS.md and add their own overrides locally
|
||||
.claude/
|
||||
CLAUDE.md
|
||||
.cursor/
|
||||
.cursorrules
|
||||
.cursorignore
|
||||
.windsurfrules
|
||||
.aider*
|
||||
.continue/
|
||||
.codeium/
|
||||
.githubnext/
|
||||
.roo/
|
||||
.rooignore
|
||||
.bolt/
|
||||
.v0/
|
||||
|
||||
Reference in New Issue
Block a user