-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.gitignore
More file actions
61 lines (48 loc) · 1.55 KB
/
Copy path.gitignore
File metadata and controls
61 lines (48 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# IDE files
.idea/
.vscode/
*.swp
*.swo
# OS files
.DS_Store
Thumbs.db
# Backup files
*.bak
*.backup
# Personal config (if any)
config.local.*
*.local.json
# E2E test config (contains hub IP and access token)
tests/e2e_config.json
# Shape-drift audit config (personalized hub app IDs)
scripts/audit_config.json
# Gemini CLI / Code Assist: ignore everything in .gemini/ by default and
# allowlist only the two files the Code Assist GitHub App reads from the
# repo. Gemini CLI (the local Google CLI tool, distinct from the GitHub
# App) writes project-local state into .gemini/ — including .env (the
# documented place to store GEMINI_API_KEY), settings.json, tmp/chats/,
# tmp/shell_history, and extensions/. None of that should land in commits.
# Mirrors Google's own pattern in google-gemini/gemini-cli's .gitignore.
.gemini/*
!.gemini/styleguide.md
!.gemini/config.yaml
# Python bytecode cache (from running lint / release scripts locally)
__pycache__/
*.pyc
# Gradle
.gradle/
build/
!gradle/wrapper/gradle-wrapper.jar
# Wizard probe run results (regression baseline; per-run, not committed)
tests/wizard_probe_results/
# Local scratch / targeted-test output files (contributor-private, not committed)
tests/bat_targeted_results.md
tests/diag_*.py
# Working-artifact diff dumps (never commit; six were accidentally tracked once)
.diff_*.txt
# Built HPM bundle output -- delivery is the bundle-artifacts branch (publish-bundle-artifact.yml);
# nothing under bundles/ is committed.
/bundles/
# JVM crash/replay dumps (from local test OOM)
replay_pid*.log
hs_err_pid*.log