refactor(linter): use serde deserialisation for promise/catch-or-return#23214
Merged
Conversation
Contributor
Author
Merge activity
|
…rn (#23214) Migrates the promise `catch-or-return` rule configuration to serde with `DefaultRuleConfig` while preserving its existing termination method behavior.
05ce70d to
4c63d48
Compare
Contributor
There was a problem hiding this comment.
Pull request overview
Refactors the promise/catch-or-return linter rule’s configuration parsing to use serde via DefaultRuleConfig, including support for terminationMethod being configured as either a string or an array.
Changes:
- Switched rule configuration parsing from manual
serde_json::Valueextraction toserde_json::from_value::<DefaultRuleConfig<_>>(). - Added serde deserialization support to the rule config, including a custom deserializer for
terminationMethodto accept both string and array forms. - Reduced allocations in termination-method matching by comparing
CompactStrentries directly against&str.
camc314
added a commit
that referenced
this pull request
Jul 3, 2026
…rn (#23214) Migrates the promise `catch-or-return` rule configuration to serde with `DefaultRuleConfig` while preserving its existing termination method behavior.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Migrates the promise
catch-or-returnrule configuration to serde withDefaultRuleConfigwhile preserving its existing termination method behavior.