💼 This rule is enabled in the following configs: strict-gjs, strict-gts.
Disallows usage of built-in form components.
Built-in Ember components like <Input> and <Textarea> should be replaced with native HTML elements for better performance and simpler code.
Examples of incorrect code for this rule:
<template>
<Input @type="text" />
</template><template>
<Textarea @value={{this.text}} />
</template>Examples of correct code for this rule:
<template>
<input type="text" />
</template><template>
<textarea></textarea>
</template>