feat(biome_js_analyse): added new option to rule to ignore unused function parameters#6405
Conversation
CodSpeed Performance ReportMerging #6405 will not alter performanceComparing Summary
|
3f78723 to
1f60fe3
Compare
|
review please :-) |
ematipico
left a comment
There was a problem hiding this comment.
Blocking to avoid accidental merges, since it's a minor
🦋 Changeset detectedLatest commit: 92011a4 The changes in this PR will be included in the next version bump. This PR includes changesets to release 14 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
|
are we merging this anytime soon please? @ematipico |
|
@vladimir-ivanov Since it's targeting the next minor, we can't merge to In the |
leaving to someone else to merge once it is allowed to go in then, thank you :-) |
…ction parameters that are siblings of the rest parameter.
d3d70b3 to
92011a4
Compare
|
@ematipico @dyc3 is this good to go now please? |
|
It can go to main, because we already have minor changes. Good to go! |
Summary
Added ignoreRestSiblings option to
noUnusedFunctionParametersrule to ignore unused function parameters that are siblings of the rest parameter.Default is
false, which means that unused function parameters that are siblings of the rest parameter will be reported.Example
{ "rules": { "noUnusedFunctionParameters": ["error", { "ignoreRestSiblings": true }] } }closes #5941