Disallow unnecessary index
route definition.
The index
route (for the /
path) is automatically provided at every level of nesting and does not need to be defined in the router.
Examples of incorrect code for this rule:
this.route('index');
this.route('index', { path: '/' });
Examples of correct code for this rule:
this.route('blog-posts');