We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db8113f commit 09874c3Copy full SHA for 09874c3
src/config/webpack.config.js
@@ -1,5 +1,4 @@
1
const path = require('path')
2
-const assign = require('lodash.assign')
3
const debug = require('debug')('pixore')
4
const webpack = require('webpack')
5
const HtmlWebpackPlugin = require('html-webpack-plugin')
@@ -27,9 +26,10 @@ const modules = {
27
26
loader: 'eslint-loader',
28
enforce: 'pre',
29
exclude: /node_modules|webpackHotDevClient/,
30
- options: assign({
31
- cacheDirectory: true
32
- }, require(ESLINT_PATH))
+ options: {
+ cacheDirectory: true,
+ configFile: ESLINT_PATH
+ }
33
}, {
34
test: /\.js$/,
35
exclude: /node_modules/,
0 commit comments