Add standard Python .gitignore entries - #105
Merged
Merged
Conversation
The repo's .gitignore predates the Python rewrite (it only covered Scala/Giter8/IntelliJ artifacts), so __pycache__/ and *.pyc were tracked as untracked noise and easy to commit by accident. Append the standard GitHub Python.gitignore template (bytecode, build/dist, .pytest_cache, .venv/.env, mypy/coverage caches, etc.) plus a .DS_Store entry for macOS. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Copilot wasn't able to review any files in this pull request.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
gaurav
commented
Jun 26, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The repo's
.gitignorepredates the Python rewrite — it only covered Scala/Giter8/IntelliJ artifacts, so__pycache__/and*.pycshowed up as untracked noise throughout the tree and were easy togit addby accident.Appends the standard GitHub
Python.gitignoretemplate (bytecode,build//dist/,.pytest_cache/,.venv/.env, mypy/coverage caches, …) below the existing entries, plus a.DS_Storeline for macOS. Existing entries are kept at the top, so this is purely additive.Independent of the #67 split stack (#101–#104) and based on
main, so it can merge immediately. No files are currently tracked that the new patterns would retroactively ignore —git ls-treeshows no.pyc/__pycache__in the tree — so nothing needsgit rm --cached.Verify
🤖 Generated with Claude Code