-
Notifications
You must be signed in to change notification settings - Fork 4
!feat(form): Moved out Binder/Validator to reduce 3rd dependencies in the core class library #41
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
Conversation
Reviewer's Guide by SourceryThis PR refactors the binder and validator functionality by relocating them to an external package (ext/form) to reduce 3rd party dependencies in the core class library. Along with this move, corresponding changes have been made to tests, context handling, and documentation to align with the new structure. No diagrams generated as the changes look simple and do not need a visual representation. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
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.
Hey @cnlangzi - I've reviewed your changes - here's some feedback:
Overall Comments:
- Consider renaming the
ext/form
package to justform
to better reflect its purpose and usage. - Update the README.md to reflect the new location of the
BindForm
function.
Here's what I looked at during the review
- 🟢 General issues: all looks good
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Complexity: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
Here's the code health analysis summary for commits Analysis Summary
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #41 +/- ##
==========================================
- Coverage 92.10% 91.97% -0.14%
==========================================
Files 43 43
Lines 1647 1644 -3
==========================================
- Hits 1517 1512 -5
- Misses 91 97 +6
+ Partials 39 35 -4
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Changed
Fixed
Added
Tests
Tasks to complete before merging PR:
make unit-test
to check for any regressions 📋make lint
to check for any issuesSummary by Sourcery
Move the Binder and Validator components to a separate package to reduce third-party dependencies in the core library.
New Features:
form
package that contains the Binder and Validator components.Enhancements: