Disallows usage of the <PageTitle> component.
Use the {{pageTitle}} helper instead of the <PageTitle> component from ember-page-title.
Examples of incorrect code for this rule:
<template>
<PageTitle>My Page</PageTitle>
</template><template>
<PageTitle @title="My Page" />
</template>Examples of correct code for this rule:
<template>
{{pageTitle "My Page"}}
</template><template>
{{pageTitle this.dynamicTitle}}
</template>