diff --git a/frontend/test.webpack.config.js b/frontend/test.webpack.config.js index b8a8595..0f08ca0 100644 --- a/frontend/test.webpack.config.js +++ b/frontend/test.webpack.config.js @@ -25,12 +25,6 @@ module.exports = { ], module: { loaders: [ - { - enforce: "pre", - test: /\.js$/, - exclude: /node_modules/, - loader: "eslint-loader", - }, { // so that inject loader works correctly test: /\.js$/, diff --git a/frontend/webpack.config.js b/frontend/webpack.config.js index b64c3e0..2be122a 100644 --- a/frontend/webpack.config.js +++ b/frontend/webpack.config.js @@ -57,32 +57,16 @@ module.exports = { }, module: { loaders: [ - // the url-loader uses DataUrls. - // the file-loader emits files. + // the url-loader uses DataUrls. + // the file-loader emits files. // for font-awesome { test: /\.(woff2?|ttf|eot|svg)$/, loader: 'url-loader' }, - { - test: /\.vue$/, - exclude: /node_modules/, - loader: 'vue-loader', - options: { - preLoaders: { - js: 'eslint-loader' - } - } - }, { test: /\.vue$/, include: /node_modules/, loader: 'vue-loader' }, - { test: /\.css$/, use: ['style-loader', 'css-loader'] }, - { - enforce: "pre", - test: /\.js$/, - exclude: /node_modules/, - loader: "eslint-loader" - }, + { test: /\.css$/, use: ['style-loader', 'css-loader'] } ] } }; diff --git a/package.json b/package.json index c3aeb0c..f5ab89e 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,6 @@ "optionalDependencies": { "@types/jasmine": "^2.5.47", "eslint": "^3.19.0", - "eslint-loader": "^1.7.1", "eslint-plugin-webdriverio": "^1.0.1", "inject-loader": "^3.0.0", "jasmine-core": "^2.5.2",