mirror of
https://github.com/benbjohnson/litestream.git
synced 2026-01-24 20:56:48 +00:00
54 lines
666 B
Plaintext
54 lines
666 B
Plaintext
# .aiexclude - Files to exclude from Gemini Code Assist
|
|
# This file works like .gitignore for AI context
|
|
|
|
# Sensitive files
|
|
*.key
|
|
*.pem
|
|
*.secret
|
|
.env
|
|
.env.*
|
|
|
|
# Build artifacts
|
|
bin/
|
|
dist/
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test databases
|
|
*.db
|
|
*.db-wal
|
|
*.db-shm
|
|
*.sqlite
|
|
*.sqlite-wal
|
|
*.sqlite-shm
|
|
|
|
# Large test files
|
|
testdata/large/
|
|
*.ltx
|
|
|
|
# Vendor directories
|
|
vendor/
|
|
|
|
# Generated files
|
|
*.pb.go
|
|
*_generated.go
|
|
|
|
# Documentation that's redundant with AGENTS.md
|
|
docs/RELEASE.md
|
|
|
|
# CI/CD configs that aren't relevant for code understanding
|
|
.github/workflows/release.yml
|
|
.goreleaser.yml
|
|
|
|
# Temporary and backup files
|
|
*.tmp
|
|
*.bak
|
|
*.swp
|
|
*~
|
|
|
|
# OS-specific files
|
|
.DS_Store
|
|
Thumbs.db
|