diff --git a/docs/rules/alias-model-in-controller.md b/docs/rules/alias-model-in-controller.md index ce721e093c..4826b103c2 100644 --- a/docs/rules/alias-model-in-controller.md +++ b/docs/rules/alias-model-in-controller.md @@ -36,3 +36,9 @@ export default Controller.extend({ pets: reads('model.pets') }); ``` + +## Help Wanted + +| Issue | Link | +| :-- | :-- | +| :x: Missing native JavaScript class support | [#560](https://github.com/ember-cli/eslint-plugin-ember/issues/560) | diff --git a/docs/rules/avoid-using-needs-in-controllers.md b/docs/rules/avoid-using-needs-in-controllers.md index 491d48ebc7..88dae37743 100644 --- a/docs/rules/avoid-using-needs-in-controllers.md +++ b/docs/rules/avoid-using-needs-in-controllers.md @@ -25,3 +25,9 @@ export default Component.extend({ newComments: alias('comments.newest') }); ``` + +## Help Wanted + +| Issue | Link | +| :-- | :-- | +| :x: Missing native JavaScript class support | [#560](https://github.com/ember-cli/eslint-plugin-ember/issues/560) | diff --git a/docs/rules/computed-property-getters.md b/docs/rules/computed-property-getters.md index e8b7b7b2a3..2bf9f2d342 100644 --- a/docs/rules/computed-property-getters.md +++ b/docs/rules/computed-property-getters.md @@ -100,3 +100,9 @@ Ember.Object.extend({ }) }); ``` + +## Help Wanted + +| Issue | Link | +| :-- | :-- | +| :x: Missing native JavaScript class support | [#560](https://github.com/ember-cli/eslint-plugin-ember/issues/560) | diff --git a/docs/rules/no-arrow-function-computed-properties.md b/docs/rules/no-arrow-function-computed-properties.md index b7851ec3c6..35702fb1d8 100644 --- a/docs/rules/no-arrow-function-computed-properties.md +++ b/docs/rules/no-arrow-function-computed-properties.md @@ -42,3 +42,9 @@ This rule takes an optional object containing: * [Arrow function spec](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions) * [Computed property spec](https://api.emberjs.com/ember/release/classes/ComputedProperty) + +## Help Wanted + +| Issue | Link | +| :-- | :-- | +| :x: Missing native JavaScript class support | [#560](https://github.com/ember-cli/eslint-plugin-ember/issues/560) | diff --git a/docs/rules/no-capital-letters-in-routes.md b/docs/rules/no-capital-letters-in-routes.md index a36b610907..95272b514f 100644 --- a/docs/rules/no-capital-letters-in-routes.md +++ b/docs/rules/no-capital-letters-in-routes.md @@ -29,3 +29,9 @@ this.route('sign-up'); * [no-unnecessary-route-path-option](no-unnecessary-route-path-option.md) * [route-path-style](route-path-style.md) * [routes-segments-snake-case](routes-segments-snake-case.md) + +## Help Wanted + +| Issue | Link | +| :-- | :-- | +| :x: Missing native JavaScript class support | [#560](https://github.com/ember-cli/eslint-plugin-ember/issues/560) | diff --git a/docs/rules/no-deeply-nested-dependent-keys-with-each.md b/docs/rules/no-deeply-nested-dependent-keys-with-each.md index 179a461835..230aa45eb9 100644 --- a/docs/rules/no-deeply-nested-dependent-keys-with-each.md +++ b/docs/rules/no-deeply-nested-dependent-keys-with-each.md @@ -31,3 +31,9 @@ owners: computed('todos.@each.owner', function() { ## Further Reading * See the [documentation](https://guides.emberjs.com/release/object-model/computed-properties-and-aggregate-data/) for Ember computed properties with `@each` + +## Help Wanted + +| Issue | Link | +| :-- | :-- | +| :x: Missing native JavaScript class support | [#560](https://github.com/ember-cli/eslint-plugin-ember/issues/560) | diff --git a/docs/rules/no-duplicate-dependent-keys.md b/docs/rules/no-duplicate-dependent-keys.md index e886cfd1af..cf95b169df 100644 --- a/docs/rules/no-duplicate-dependent-keys.md +++ b/docs/rules/no-duplicate-dependent-keys.md @@ -31,3 +31,9 @@ computed('foo.{bar,baz,qux}', 'bar.foo', function() { //... }) ``` + +## Help Wanted + +| Issue | Link | +| :-- | :-- | +| :x: Missing native JavaScript class support | [#560](https://github.com/ember-cli/eslint-plugin-ember/issues/560) | diff --git a/docs/rules/no-empty-attrs.md b/docs/rules/no-empty-attrs.md index c9425da401..5b8541da9c 100644 --- a/docs/rules/no-empty-attrs.md +++ b/docs/rules/no-empty-attrs.md @@ -31,3 +31,9 @@ export default Model.extend({ ``` In case you need a custom behavior, it's good to write your own [transform](http://emberjs.com/api/data/classes/DS.Transform.html). + +## Help Wanted + +| Issue | Link | +| :-- | :-- | +| :x: Missing native JavaScript class support | [#560](https://github.com/ember-cli/eslint-plugin-ember/issues/560) | diff --git a/docs/rules/no-side-effects.md b/docs/rules/no-side-effects.md index 3456caaccc..b2928574ac 100644 --- a/docs/rules/no-side-effects.md +++ b/docs/rules/no-side-effects.md @@ -38,3 +38,9 @@ export default Component.extend({ }) }); ``` + +## Help Wanted + +| Issue | Link | +| :-- | :-- | +| :x: Missing native JavaScript class support | [#560](https://github.com/ember-cli/eslint-plugin-ember/issues/560) | diff --git a/docs/rules/no-unnecessary-service-injection-argument.md b/docs/rules/no-unnecessary-service-injection-argument.md index 478eae6f7a..342fe91ec9 100644 --- a/docs/rules/no-unnecessary-service-injection-argument.md +++ b/docs/rules/no-unnecessary-service-injection-argument.md @@ -41,3 +41,9 @@ export default Component.extend({ * Ember [Services](https://guides.emberjs.com/release/applications/services/) guide * Ember [inject](https://emberjs.com/api/ember/release/functions/@ember%2Fservice/inject) function spec + +## Help Wanted + +| Issue | Link | +| :-- | :-- | +| :x: Missing native JavaScript class support | [#560](https://github.com/ember-cli/eslint-plugin-ember/issues/560) | diff --git a/docs/rules/no-volatile-computed-properties.md b/docs/rules/no-volatile-computed-properties.md index bc416a94c1..c719ffa575 100644 --- a/docs/rules/no-volatile-computed-properties.md +++ b/docs/rules/no-volatile-computed-properties.md @@ -35,3 +35,9 @@ const Person = EmberObject.extend({ * [Deprecation list](https://deprecations.emberjs.com/v3.x/#toc_computed-property-volatile) * [Volatile spec](https://api.emberjs.com/ember/release/classes/ComputedProperty/methods/volatile?anchor=volatile) * [Computed property spec](https://api.emberjs.com/ember/release/classes/ComputedProperty) + +## Help Wanted + +| Issue | Link | +| :-- | :-- | +| :x: Missing native JavaScript class support | [#560](https://github.com/ember-cli/eslint-plugin-ember/issues/560) | diff --git a/docs/rules/order-in-components.md b/docs/rules/order-in-components.md index 031d1da96f..bdf50683e7 100644 --- a/docs/rules/order-in-components.md +++ b/docs/rules/order-in-components.md @@ -129,3 +129,9 @@ export default Component.extend({ } }); ``` + +## Help Wanted + +| Issue | Link | +| :-- | :-- | +| :x: Missing native JavaScript class support | [#560](https://github.com/ember-cli/eslint-plugin-ember/issues/560) | diff --git a/docs/rules/order-in-controllers.md b/docs/rules/order-in-controllers.md index 81ae5d82b7..2191cfc218 100644 --- a/docs/rules/order-in-controllers.md +++ b/docs/rules/order-in-controllers.md @@ -98,3 +98,9 @@ export default Controller.extend({ }, }); ``` + +## Help Wanted + +| Issue | Link | +| :-- | :-- | +| :x: Missing native JavaScript class support | [#560](https://github.com/ember-cli/eslint-plugin-ember/issues/560) | diff --git a/docs/rules/order-in-models.md b/docs/rules/order-in-models.md index b4112948b3..44eb6975de 100644 --- a/docs/rules/order-in-models.md +++ b/docs/rules/order-in-models.md @@ -71,3 +71,9 @@ export default Model.extend({ shape: attr('string') }); ``` + +## Help Wanted + +| Issue | Link | +| :-- | :-- | +| :x: Missing native JavaScript class support | [#560](https://github.com/ember-cli/eslint-plugin-ember/issues/560) | diff --git a/docs/rules/order-in-routes.md b/docs/rules/order-in-routes.md index 09ed0c94d7..f70de26be5 100644 --- a/docs/rules/order-in-routes.md +++ b/docs/rules/order-in-routes.md @@ -124,3 +124,9 @@ export default Route.extend({ }, }); ``` + +## Help Wanted + +| Issue | Link | +| :-- | :-- | +| :x: Missing native JavaScript class support | [#560](https://github.com/ember-cli/eslint-plugin-ember/issues/560) | diff --git a/docs/rules/require-computed-macros.md b/docs/rules/require-computed-macros.md index 922ac50b9d..e8cf58be4f 100644 --- a/docs/rules/require-computed-macros.md +++ b/docs/rules/require-computed-macros.md @@ -89,3 +89,9 @@ export default Component.extend({ * [Guide](https://guides.emberjs.com/release/object-model/computed-properties/) for computed properties * [Spec](http://api.emberjs.com/ember/release/modules/@ember%2Fobject#functions-computed) for computed property macros + +## Help Wanted + +| Issue | Link | +| :-- | :-- | +| :x: Missing native JavaScript class support | [#560](https://github.com/ember-cli/eslint-plugin-ember/issues/560) | diff --git a/docs/rules/require-computed-property-dependencies.md b/docs/rules/require-computed-property-dependencies.md index 1a0d6c1f21..9a8efbb513 100644 --- a/docs/rules/require-computed-property-dependencies.md +++ b/docs/rules/require-computed-property-dependencies.md @@ -49,3 +49,9 @@ This rule takes an optional object containing: ## References * [Guide](https://guides.emberjs.com/release/object-model/computed-properties/) for computed properties + +## Help Wanted + +| Issue | Link | +| :-- | :-- | +| :x: Missing native JavaScript class support | [#560](https://github.com/ember-cli/eslint-plugin-ember/issues/560) | diff --git a/docs/rules/require-return-from-computed.md b/docs/rules/require-return-from-computed.md index 06fb3a8c52..ce5c68e850 100644 --- a/docs/rules/require-return-from-computed.md +++ b/docs/rules/require-return-from-computed.md @@ -73,3 +73,9 @@ To avoid false positives from relying on implicit returns in some code branches, * [consistent-return] from eslint [consistent-return]: https://eslint.org/docs/rules/consistent-return + +## Help Wanted + +| Issue | Link | +| :-- | :-- | +| :x: Missing native JavaScript class support | [#560](https://github.com/ember-cli/eslint-plugin-ember/issues/560) | diff --git a/docs/rules/use-brace-expansion.md b/docs/rules/use-brace-expansion.md index 3587b8e4ff..ed03cd4df1 100644 --- a/docs/rules/use-brace-expansion.md +++ b/docs/rules/use-brace-expansion.md @@ -21,3 +21,9 @@ fullName: computed('user.{firstName,lastName}', { // Code }) ``` + +## Help Wanted + +| Issue | Link | +| :-- | :-- | +| :x: Missing native JavaScript class support | [#560](https://github.com/ember-cli/eslint-plugin-ember/issues/560) |