Skip to content

Commit

Permalink
Update crates/oxc_linter/src/rules/eslint/no_unused_vars/options.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Cam McHenry <[email protected]>
  • Loading branch information
DonIsaac and camchenry committed Oct 20, 2024
1 parent 27eccb7 commit 7328e52
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ mod tests {
.unwrap();
// option object provided, no default varsIgnorePattern
assert!(rule.vars_ignore_pattern.is_none());
assert!(matches!(rule.args_ignore_pattern, IgnorePattern::Default));
assert!(rule.args_ignore_pattern.is_default());

let rule: NoUnusedVarsOptions = json!([
{
Expand Down

0 comments on commit 7328e52

Please sign in to comment.