-
Notifications
You must be signed in to change notification settings - Fork 76
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
[Refactor] Improve Structure and Clarity of CONTRIBUTING.md #1084
[Refactor] Improve Structure and Clarity of CONTRIBUTING.md #1084
Conversation
…on guidelines - refactored the `CONTRIBUTING.md` guide for better clarity and organization - added a table of contents to enhance navigation - cleaned up unused imports in the `language_client_codegen` folder
@miguelcsx is attempting to deploy a commit to the Gloo Team on Vercel. A member of the Team first needs to authorize it. |
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.
👍 Looks good to me! Reviewed everything up to 9bb9cb6 in 20 seconds
More details
- Looked at
361
lines of code in6
files - Skipped
0
files when reviewing. - Skipped posting
4
drafted comments based on config settings.
1. engine/language_client_codegen/src/openapi.rs:4
- Draft comment:
LiteralValue
is imported but not used in this file. Consider removing it to clean up the code. - Reason this comment was not posted:
Confidence changes required:50%
The PR description mentions removing unused imports, and I noticed that theLiteralValue
import is no longer used inopenapi.rs
. This should be removed to maintain code cleanliness.
2. engine/language_client_codegen/src/ruby/generate_types.rs:3
- Draft comment:
use std::collections::HashSet;
is no longer used in this file. Consider removing it to clean up the code. - Reason this comment was not posted:
Confidence changes required:50%
The PR description mentions removing unused imports, and I noticed that theHashSet
import is no longer used ingenerate_types.rs
. This should be removed to maintain code cleanliness.
3. engine/language_client_codegen/src/ruby/mod.rs:9
- Draft comment:
use either::Either;
is no longer used in this file. Consider removing it to clean up the code. - Reason this comment was not posted:
Confidence changes required:50%
The PR description mentions removing unused imports, and I noticed that theEither
import is no longer used inmod.rs
. This should be removed to maintain code cleanliness.
4. engine/language_client_codegen/src/typescript/mod.rs:7
- Draft comment:
use either::Either;
is no longer used in this file. Consider removing it to clean up the code. - Reason this comment was not posted:
Confidence changes required:50%
The PR description mentions removing unused imports, and I noticed that theEither
import is no longer used inmod.rs
. This should be removed to maintain code cleanliness.
Workflow ID: wflow_sxPOUqWRyrq3mNMP
You can customize Ellipsis with 👍 / 👎 feedback, review rules, user-specific overrides, quiet
mode, and more.
@@ -30,7 +29,7 @@ pub(crate) struct RubyStreamTypes<'ir> { | |||
partial_classes: Vec<PartialRubyStruct<'ir>>, | |||
} | |||
|
|||
/// The Python class corresponding to Partial<TypeDefinedInBaml> | |||
/// The Python class corresponding to Partial<TypeDefinedjInBaml> |
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.
typo!
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.
@hellovai in the next PR, I will correct it, my bad
Description
This PR implements the following changes:
CONTRIBUTING.md
: The contributing guidelines have been restructured for better clarity and organization. A table of contents has also been added for easier navigation.language_client_codegen
folder to enhance code quality.Key Changes
Refactored the content and structure of
CONTRIBUTING.md
.Added a table of contents to improve usability.
Removed unnecessary imports from
language_client_codegen
.No breaking changes were introduced, ensuring that contributors can easily follow the updated guidelines.
Closes Issue: #1083
Important
Refactor
CONTRIBUTING.md
for clarity and remove unused imports inlanguage_client_codegen
.CONTRIBUTING.md
for better clarity and organization.CONTRIBUTING.md
for easier navigation.language_client_codegen/src/openapi.rs
,language_client_codegen/src/ruby/field_type.rs
, andlanguage_client_codegen/src/ruby/mod.rs
.This description was created by for 9bb9cb6. It will automatically update as commits are pushed.