Adding eslint to npmDevDependencies and following just about any tutorial or official docs for running eslint-loader in webpack does not seem to trigger it to run:
all of my js source is located in target/scala-2.12/scalajs-bundler/main, so it should be picked up just like all my other loaders right?
I'm expecting to at least get the usual error that .eslintrc is missing, but I see no logs at all for eslint. Is there something fundamentally incompatible with eslint loader and fastOptJS::webpack?
Adding eslint to
npmDevDependencies
and following just about any tutorial or official docs for running eslint-loader in webpack does not seem to trigger it to run:In my webpack config:
all of my js source is located in
target/scala-2.12/scalajs-bundler/main
, so it should be picked up just like all my other loaders right?I'm expecting to at least get the usual error that
.eslintrc
is missing, but I see no logs at all for eslint. Is there something fundamentally incompatible with eslint loader andfastOptJS::webpack
?