When using Webpack with AngularJS, the code is usually written as follow: ``` import {myComponent} from 'my-component.component.js' angular.module('my-module') .component('myComponent', myComponent); ``` How to check that the filename (my-component.component.js) is following the John Papa rules while using the eslint-plugin-angular ?