-
Notifications
You must be signed in to change notification settings - Fork 244
chore: fix markdown lint #2742
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
chore: fix markdown lint #2742
Conversation
Summary of ChangesHello @tac0turtle, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This PR addresses markdown linting issues by removing an outdated entry in Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
|
Claude finished @tac0turtle's task —— View job Code Review Complete ✅Tasks
SummaryThis PR successfully addresses markdown linting issues in the documentation. The changes are minimal, focused, and correct. Review Feedback✅ docs/learn/config.md - Removing Orphaned TOC EntryChange: Removed Analysis:
File reference: ✅ tools/da-debug/README.md - Disabling Link Check for localhost URLChange: Wrapped the Analysis:
File reference: Alternative consideration: While this approach is valid, you might consider documenting the actual production DA URL format if there's a standard one, but for a debugging tool, localhost is appropriate as the default. Documentation QualityBoth changes maintain excellent documentation quality:
VerdictAPPROVED ✅ Both changes are:
The PR title "chore: fix markdown lint" accurately describes the changes, and the implementation is clean and focused. |
|
The latest Buf updates on your PR. Results from workflow CI and Release / buf-check (pull_request).
|
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.
Code Review
Overall, the changes in this pull request are straightforward and address the stated goal of fixing markdown linting issues. I have one suggestion to improve the approach for disabling the link checker in tools/da-debug/README.md to make it more robust and less likely to cause rendering issues.
| <!-- markdown-link-check-disable --> | ||
| - `--da-url string`: DA layer JSON-RPC URL (default: "http://localhost:7980") | ||
| <!-- markdown-link-check-enable --> |
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.
For better maintainability and to avoid potential rendering issues with the list format, it's preferable to use an inline disable comment.
The markdown-link-check tool supports <!-- markdown-link-check-disable-line -->, which can be placed at the end of the line containing the link. This approach is cleaner as it modifies only the relevant line and ensures the markdown list structure remains intact.
| <!-- markdown-link-check-disable --> | |
| - `--da-url string`: DA layer JSON-RPC URL (default: "http://localhost:7980") | |
| <!-- markdown-link-check-enable --> | |
| - `--da-url string`: DA layer JSON-RPC URL (default: "http://localhost:7980") <!-- markdown-link-check-disable-line --> |
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #2742 +/- ##
=======================================
Coverage 62.17% 62.17%
=======================================
Files 79 79
Lines 8497 8497
=======================================
Hits 5283 5283
Misses 2721 2721
Partials 493 493
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
* main: feat(store)!: add batching for atomicity (#2746) refactor(apps): rollback cmd updates (#2744) chore: add makefile for tools (#2743) chore: fix markdown lint (#2742) build(deps): Bump the all-go group across 5 directories with 6 updates (#2738) refactor(block): improve cancellation (#2741) chore: make the prompt go oriented (#2739) perf(block): use `sync/atomic` instead of mutexes (#2735)
Overview