ember-cli / ember-cli/eslint-plugin-ember
New rule proposal - "no-unused-dependent-properties"
Open
enhancement
New Rule
- Dominant language
- JavaScript
- Stars
- 263
- Forks
- 214
- Avg merge
- 30m
- Merged PRs (30d)
- 5
Description
Proposed rule should check if there are any unused dependent properties in computed properties.
Correct:
```
test: computed('a', 'b', function() {
return get(this, 'a') + get(this, 'b');
}),
```
Incorrect:
```
test: computed('a', 'b', function() {
return get(this, 'a') + 'asd';
}),
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.