💼 This rule is enabled in the ✅ recommended
config.
🔧 This rule is automatically fixable by the --fix
CLI option.
Disallow unnecessary route path
option.
When defining a route, it's not necessary to specify the path
option if it matches the route name.
Examples of incorrect code for this rule:
this.route('blog-posts', { path: '/blog-posts' });
Examples of correct code for this rule:
this.route('blog-posts');
this.route('blog-posts', { path: '/blog' });