Add no-modifier-without-element-usage rule - #2839
Merged
NullVoxPopuli merged 2 commits intoAug 17, 2026
Merged
Conversation
Reports modifiers that never reference their element, for both `modifier()` callbacks and class modifiers (`modify(element)` or `this.element`). Any reference counts as usage, including destructuring and passing the element along. Not in `recommended`; that is proposed for v14 in emberjs/rfcs#1217. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Contributor
🏎️ Benchmark Comparison
Full mitata output |
evoactivity
approved these changes
Aug 17, 2026
NullVoxPopuli
deleted the
nvp/discourage-modifiers-without-using-the-element
branch
August 17, 2026 20:28
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.
New rule: report a modifier that never references its element.
A modifier that ignores its element is an effect scheduled by render, which is the data flow
no-at-ember-render-modifiersexists to remove. That rule only bans an import, so the same pattern is reachable with three lines ofember-modifier.Both styles are checked:
modifier(fn)fromember-modifierClassBasedModifiermodify(), orthis.elementanywhere in the classAny reference counts as usage, including destructuring and passing the element to something else. A missing first param is a violation.
modify = someHelperis skipped, since the function is not visible here.Not added to
recommended. That is proposed for v14 in emberjs/rfcs#1217.🤖 Generated with Claude Code