💼 This rule is enabled in the 📋 template-lint-migration config.
Disallow capital letters in argument names. Use lowercase argument names (e.g., @arg instead of @Arg).
This rule enforces the convention that argument names should start with lowercase letters.
Examples of incorrect code for this rule:
<template>
<div>{{@Arg}}</div>
</template><template>
<div>{{@MyArgument}}</div>
</template>Examples of correct code for this rule:
<template>
<div>{{@arg}}</div>
</template><template>
<div>{{@myArgument}}</div>
</template>