Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .geminiignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Summary: tell Gemini CLI it should (or should not) ignore certain files and
# folders. Gemini CLI reads .gitignore too, but .geminiignore takes precedence
# -- useful for un-ignoring files that shouldn't be committed to git yet should
# be visible to Gemini CLI. (Note also a different file, .aiexclude, is read by
# Gemini Code Assist.) See https://geminicli.com/docs/cli/gemini-ignore/.

# Don't ignore the Bazel config files created by configure.sh.
!.bazelrc
!.tf_configure.bazelrc
11 changes: 8 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,13 @@
.idea/*
*.iml

# ignore cache
# ignore caches
*__pycache__/*
*.cache/*
*.ipynb_checkpoints*
.ipynb_checkpoints
.mypy_cache
.pytest_cache

# Mac only
.DS_Store
Expand All @@ -53,8 +55,11 @@ venv/
quantum_env/
quantum_venv/

# ignore emacs temp files
*#
# Ignore Emacs backup, checkpoint, and other files.
.\#*
\#*\#
.git/COMMIT_EDITMSG
TAGS

# vscode
.vscode/*
Expand Down
Loading