From 70dbb248cbb17da2739287192ecb3e67e4e0eebd Mon Sep 17 00:00:00 2001 From: Gyandeep Singh Date: Wed, 11 Jan 2017 13:11:57 -0600 Subject: [PATCH] style(lint): lint fixes (#195) --- src/karma-webpack.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/karma-webpack.js b/src/karma-webpack.js index 39cd5af..35610a3 100644 --- a/src/karma-webpack.js +++ b/src/karma-webpack.js @@ -30,7 +30,9 @@ function Plugin( // Webpack 2.1.0-beta.7+ will throw in error if both entry and plugins are not specified in options // https://github.com/webpack/webpack/commit/b3bc5427969e15fd3663d9a1c57dbd1eb2c94805 if (!webpackOptions.entry) { - webpackOptions.entry = function(){return {}} + webpackOptions.entry = function(){ + return {} + } }; if (!webpackOptions.output) {