run eslint in a separate process in webpack

169 Views Asked by At

I'm using eslint and eslint-loader with webpack. My eslint has so many rules that its execution takes up to 50% of the whole build time.

I wonder if there's a way to run eslint in a separate process like similar to ForkTsCheckerWebpackPlugin.

I also tried using thread-loader, but instead by time even grew up even more:

{
  test: /\.(ts|vue)$/,
  use: ["thread-loader", "eslint-loader"],
  exclude: /node_modules/
}
0

There are 0 best solutions below