Thanks for awesome works :) Currently dynamic-import-chunkname rule require webpack chunk name, will report error if not exit. Is able to add a option to check chunk-name format only, if webpack chunk name not exit is ok. Currently `dynamic-import-chunkname` will throw error for ```js // Bad import("someModule") // Good import( /* webpackChunkName: "someModule" */ 'someModule', ); // Bad import( /*webpackChunkName:"someModule"*/ 'someModule', ); ``` I want to add a option to make ```js // Good import("someModule") // Bad import( /*webpackChunkName:"someModule"*/ 'someModule', ); ``` I glad like open a PR for this feature. Related https://github.com/un-es/eslint-plugin-i/issues/21