This repository was archived by the owner on Sep 28, 2020. It is now read-only.
This repository was archived by the owner on Sep 28, 2020. It is now read-only.
eslint loader is horribly inefficient #82
Closed
Description
eslint-loader takes about 10s to run through 5k lines of js files. This appears to be a combination of:
- initializing eslint once per file
- using executeOnText instead of executeOnFile, which means users can't take advantage of the eslint cache feature.
Is there anything which can be done for these?