Disallow unknown arguments for built-in Ember components.
This rule checks that only known arguments are used with built-in Ember components like <Input>, <Textarea>, and <LinkTo>.
Examples of incorrect code for this rule:
<template>
<Input @unknownArg="value" />
</template><template>
<Textarea @invalidProp={{this.value}} />
</template>Examples of correct code for this rule:
<template>
<Input @type="text" @value={{this.value}} />
</template><template>
<Textarea @value={{this.text}} @rows="10" />
</template>