ember/template-no-attrs-in-components This rule prevents the usage of this.attrs property to access values passed to the component. Use @arg syntax instead. Examples This rule forbids the following: {{this.attrs.foo}} This rule allows the following: {{@foo}} References rfcs/named args