# ember/template-no-arguments-for-html-elements 💼 This rule is enabled in the 📋 `template-lint-migration` [config](https://github.com/ember-cli/eslint-plugin-ember#-configurations). 💼 This rule is enabled in the following [configs](https://github.com/ember-cli/eslint-plugin-ember#-configurations): `strict-gjs`, `strict-gts`. Disallow `@arguments` on HTML elements. Arguments (using the `@` prefix) are a feature specific to Ember components. They should not be used on regular HTML elements, which only support standard HTML attributes. ## Rule Details This rule disallows using `@arguments` on HTML elements. Use regular attributes instead. ## Examples ### Incorrect ❌ ```gjs ``` ```gjs ``` ```gjs ``` ### Correct ✅ ```gjs ``` ```gjs ``` ```gjs ``` ## Related Rules - [template-no-block-params-for-html-elements](./template-no-block-params-for-html-elements.md) ## References - [Ember Guides - Component Arguments](https://guides.emberjs.com/release/components/component-arguments-and-html-attributes/) - [eslint-plugin-ember template-no-args-paths](https://github.com/ember-cli/eslint-plugin-ember/blob/master/docs/rules/template-no-args-paths.md)