-
Notifications
You must be signed in to change notification settings - Fork 0
chore: gap-fill 7 governance tools #549
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 all commits
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 |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| * text=auto eol=lf | ||
| *.rs text diff=rust | ||
| *.toml text | ||
| *.md text | ||
| *.yml text eol=lf | ||
| *.yaml text eol=lf | ||
| *.json text | ||
| *.sh text eol=lf | ||
| *.bat text eol=crlf | ||
| Cargo.lock binary linguist-generated=false | ||
|
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. Contradictory Cargo.lock attributes hide PR diffsLow Severity The Reviewed by Cursor Bugbot for commit 1e2f9e7. Configure here. |
||
| package-lock.json binary linguist-generated=true | ||
| *.png binary | ||
| *.jpg binary | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| name: cargo-semver-checks | ||
| on: | ||
| pull_request: { paths: ['**/Cargo.toml'] } | ||
| workflow_dispatch: | ||
| jobs: | ||
| semver-checks: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: obi1kenobi/cargo-semver-checks-action@v2 | ||
|
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. Semver checks workflow targets stub root workspaceHigh Severity The new Reviewed by Cursor Bugbot for commit 1e2f9e7. Configure here. |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| version: '3' | ||
| tasks: | ||
| default: { desc: List tasks, cmds: [task --list-all] } | ||
| build: { desc: cargo build, cmds: [cargo build --workspace] } | ||
| test: { desc: cargo test, cmds: [cargo test --workspace] } | ||
| lint: { desc: cargo clippy + fmt --check, cmds: [cargo clippy --workspace -- -D warnings, cargo fmt --check] } | ||
| fmt: { desc: cargo fmt, cmds: [cargo fmt] } | ||
| audit: { desc: cargo deny + audit, cmds: [cargo deny check, cargo audit] } | ||
| ci: { desc: lint + test + audit, cmds: [{task: lint}, {task: test}, {task: audit}] } | ||
|
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. Taskfile targets stub workspace instead of codex-rsHigh Severity The Additional Locations (1)Reviewed by Cursor Bugbot for commit 1e2f9e7. Configure here. |
||


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.
Suggestion:
Cargo.lockis marked asbinary, but lockfiles are plain text and are expected to be diffed and merged in PRs. Treating it as binary disables normal text diff/merge behavior, which can hide dependency changes and cause avoidable merge conflicts; classify it as text instead. [logic error]Severity Level: Major⚠️
Steps of Reproduction ✅
Fix in Cursor | Fix in VSCode Claude
(Use Cmd/Ctrl + Click for best experience)
Prompt for AI Agent 🤖