💼 This rule is enabled in the following configs: strict-gjs, strict-gts.
Disallows unnecessary service injection arguments when the argument matches the property name.
When injecting a service, the argument is unnecessary if it matches the property name.
Examples of incorrect code for this rule:
<template>
{{service "store"}}
</template>Examples of correct code for this rule:
<template>
{{this.store}}
</template><template>
{{service "my-custom-service"}}
</template>