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
13 changes: 13 additions & 0 deletions .gemini/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
have_fun: false
memory_config:
disabled: false
code_review:
disable: false
comment_severity_threshold: LOW
max_review_comments: -1
pull_request_opened:
help: false
summary: false
code_review: false
include_drafts: false
ignore_patterns: []
4 changes: 4 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# Normalize Python files to LF line endings
*.py text eol=lf

# Preserve staging-only files during upstream merges
.gemini/** merge=ours
.gitattributes merge=ours
Comment on lines +5 to +6

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The merge=ours attribute requires a custom merge driver to be defined in the Git configuration (e.g., git config merge.ours.driver true) to function. Without this, Git will ignore the attribute during merges. Additionally, applying this to .gitattributes itself is risky as it can cause the repository to silently ignore important upstream updates to global attributes like line endings or LFS tracking.

Loading