-
Notifications
You must be signed in to change notification settings - Fork 0
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
🎉 For Denops v7 #8
Conversation
WalkthroughThis update enhances the Changes
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configuration File (
|
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.
`deno check` does not check examples in jsdoc comments.
👍 run doc test on test workflow
👍 add `AsyncDisposable` to the return type of `Entrypoint`
☕ Minor changes
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.
Actionable comments posted: 1
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (6)
- .github/workflows/test.yml (1 hunks)
- .gitignore (1 hunks)
- README.md (1 hunks)
- deno.jsonc (1 hunks)
- denops.ts (2 hunks)
- mod.ts (1 hunks)
Files skipped from review due to trivial changes (4)
- .gitignore
- README.md
- deno.jsonc
- mod.ts
Additional context used
Biome
denops.ts
[error] 178-178: void is confusing inside a union type.
Unsafe fix: Use undefined instead.
(lint/suspicious/noConfusingVoidType)
Additional comments not posted (2)
.github/workflows/test.yml (1)
35-36
: LGTM! The new step "Test doc" is correctly configured.The step runs a Deno task for documentation testing, which is a good practice to ensure documentation accuracy.
denops.ts (1)
77-80
: LGTM! Theinterrupted
property is correctly defined.The property is an optional
AbortSignal
, which can be useful for handling interruptions.Ensure proper integration of this property in the codebase.
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.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (2)
- README.md (1 hunks)
- mod.ts (1 hunks)
Files skipped from review due to trivial changes (1)
- mod.ts
Additional comments not posted (4)
README.md (4)
10-11
: Approved: Clarification on module usage.The change emphasizes the recommended practice of using the
@denops/std
module, which enhances clarity for users.
16-17
: Approved: Added reference link.The change provides a useful reference link to the
@denops/std
module.
18-24
: Approved: Added usage section with warning.The new usage section with a warning provides clear guidance to users about the recommended module usage.
25-31
: Approved: Added usage example.The code snippet demonstrates how to import and use the
Entrypoint
type from thedenops_core
module, which is helpful for users.
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.
Actionable comments posted: 1
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (2)
- README.md (1 hunks)
- mod.ts (1 hunks)
Files skipped from review as they are similar to previous changes (1)
- mod.ts
Additional context used
LanguageTool
README.md
[uncategorized] ~6-~6: The grammatical number of this noun doesn’t look right. Consider replacing it.
Context: ...], an ecosystem for creating Vim/Neovim plugin in [Deno]. > [!WARNING] > > This modul...(AI_EN_LECTOR_REPLACEMENT_NOUN_NUMBER)
Additional comments not posted (4)
README.md (4)
9-13
: LGTM!The warning about the discouraged usage of the module and the recommendation to use the
@denops/std
module is clear and well-placed.
15-20
: LGTM!The code snippet demonstrating how to import and use the
Entrypoint
type from thedenops_core
module is clear and helpful.
25-26
: LGTM!The reference to the
@denops/std
module is correct and aligns with the recommendation in the warning section.
27-31
: LGTM!The licensing information remains unchanged and is accurate.
This is a core module of [denops.vim], an ecosystem for creating Vim/Neovim | ||
plugin in [Deno]. |
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.
Correct the grammatical number.
The noun "plugin" should be pluralized to "plugins" for grammatical correctness.
- plugin in [Deno].
+ plugins in [Deno].
Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
This is a core module of [denops.vim], an ecosystem for creating Vim/Neovim | |
plugin in [Deno]. | |
This is a core module of [denops.vim], an ecosystem for creating Vim/Neovim | |
plugins in [Deno]. |
Tools
LanguageTool
[uncategorized] ~6-~6: The grammatical number of this noun doesn’t look right. Consider replacing it.
Context: ...], an ecosystem for creating Vim/Neovim plugin in [Deno]. > [!WARNING] > > This modul...(AI_EN_LECTOR_REPLACEMENT_NOUN_NUMBER)
Ref
Summary by CodeRabbit
New Features
interrupted
property in the Denops interface.Documentation
@denops/std
and added examples for using the Entrypoint type.Chores
deno.lock
to the repository.CI/CD