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
// Bad
import("someModule")
// Good
import(
/* webpackChunkName: "someModule" */
'someModule',
);
// Bad
import(
/*webpackChunkName:"someModule"*/
'someModule',
);
I want to add a option to make
// Good
import("someModule")
// Bad
import(
/*webpackChunkName:"someModule"*/
'someModule',
);
I glad like open a PR for this feature.
Related un-ts/eslint-plugin-import-x#21
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-chunknamewill throw error forI want to add a option to make
I glad like open a PR for this feature.
Related un-ts/eslint-plugin-import-x#21