-
Notifications
You must be signed in to change notification settings - Fork 13
chore(git): ignore local benchmark artifacts #118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -29,6 +29,26 @@ grammars/*.wasm | |
| docs/visuals.md | ||
| .repolore/ | ||
| .opencode/ | ||
| .agents/ | ||
| CODEBASE_MAP.md | ||
| repos/ | ||
|
|
||
| # Local benchmark/lab outputs | ||
| benchmark-runs/ | ||
| outputs/ | ||
| results/skeptical-user/raw/ | ||
| results/skeptical-user/local/ | ||
| results/skeptical-user/tmp/ | ||
| .tmp-skeptical-user/ | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!
Owner
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Addressed for the results paths: the specific |
||
|
|
||
| # External benchmark/research clones | ||
| matplotlib-repo/ | ||
| sympy-contextbench/ | ||
|
|
||
| # Local agent/vendor artifacts | ||
| **/skills/bmad-*/ | ||
| _bmad/ | ||
| _bmad-*/ | ||
| _bmad-output/ | ||
|
|
||
| # Local browser automation artifacts | ||
| .playwright-mcp/ | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
outputs/is a very broad top-level ignoreIgnoring
outputs/at the repository root will silently suppress any directory by that name, including legitimate build artifacts or test outputs that a future contributor might intend to track. If only the benchmark-relatedoutputs/is meant, consider scoping it (e.g.benchmark-runs/outputs/or a comment-aligned path).There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Addressed in the current diff: outputs/ is now root-anchored as /outputs/, so it only ignores the repo-root generated outputs directory instead of any nested directory named outputs.