ember/template-no-attrs-in-components

April 20, 2026 ยท View on GitHub

๐Ÿ’ผ This rule is enabled in the ๐Ÿ“‹ template-lint-migration config.

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