From bbb36df866eb6e7ec925d76ab0c54d5b6193c3b5 Mon Sep 17 00:00:00 2001 From: Arnaud Meukam Date: Mon, 25 May 2026 10:17:02 +0200 Subject: [PATCH] chore: enhance .gitignore with common patterns Add ignore rules for: - Build outputs (/_output/ for SBOMs and image refs) - Go test and coverage artifacts (*.test, *.out, coverage.*) - OS artifacts (.DS_Store, Thumbs.db) - Editor/IDE files (.idea/, .vscode/, swap files) - Local worktrees (/.worktrees/) - Fix missing trailing newline Signed-off-by: Arnaud Meukam --- .gitignore | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index d7afedf..faec919 100644 --- a/.gitignore +++ b/.gitignore @@ -12,4 +12,35 @@ __pycache__/ *.pyc # Local environment variables -.ate-dev-env.sh \ No newline at end of file +.ate-dev-env.sh + +# OS artifacts +.DS_Store +Thumbs.db + +# Editors and IDEs +.idea/ +.vscode/ +*.swp +*.swo +*~ + +# AI IDEs and CLIs +.aider* +.claude/ +.cline/ +.codex/ +.continue/ +.copilot/ +.cursor/ +.gemini/ +.goose/ +.kiro/ +.opencode/ +.qwen/ +.roo/ +.trae/ +.windsurf/ + +# Local worktrees +/.worktrees/