chore: gitignore *.mjjournal agent-local files#12
Merged
Conversation
These are agent-local journal files that were untracked but not ignored, so they showed up in `git status` and failed a local `reuse lint` run — while CI passed, since an untracked file is absent from the checkout. That discrepancy made the local lint useless as a pre-push gate. Grouped with the existing agent-local exclusions (CLAUDE.md, .claude/, Chat.txt). Local `reuse lint` now reports 7/7 and matches CI. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
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.
*.mjjournalfiles are agent-local journals that were untracked but not ignored. That left them showing up ingit statusand failing a localreuse lintrun, while CI passed — an untracked file is simply absent from the CI checkout.The discrepancy mattered:
standard/CLAUDE.mdnames localreuse lintas a pre-push gate, and a gate that fails on a file CI never sees is a gate people learn to ignore.Grouped with the existing agent-local exclusions (
CLAUDE.md,.claude/,Chat.txt).Verification
git check-ignore -v The_Steelbore_Standard.texi.mjjournal→ matched by.gitignore:39git status --short→ clean apart from this changereuse lint→ 7/7, compliant (was 7/8 before)Independent of #11 — branched from
main, no overlapping files, mergeable in either order.🤖 Generated with Claude Code