Disallow potential path strings that should be dynamic values in templates.
This rule catches potential path strings in text nodes that should likely be dynamic values.
Examples of incorrect code for this rule:
<template>
<div>this.propertyName</div>
</template><template>
<div>foo.bar</div>
</template>Examples of correct code for this rule:
<template>
<div>{{this.propertyName}}</div>
</template><template>
<div>{{this.foo.bar}}</div>
</template>