From 2d618b91abb0f741c7e58deaa1d5bdbaa5e7cb17 Mon Sep 17 00:00:00 2001 From: Yuya Ochiai Date: Tue, 10 Apr 2018 21:13:34 +0900 Subject: [PATCH] Fix eslint error --- webpack.config.base.js | 1 + webpack.config.main.js | 1 + webpack.config.renderer.js | 1 + 3 files changed, 3 insertions(+) diff --git a/webpack.config.base.js b/webpack.config.base.js index efe3dd12..f3011457 100644 --- a/webpack.config.base.js +++ b/webpack.config.base.js @@ -1,3 +1,4 @@ +/* eslint-disable import/no-commonjs */ 'use strict'; const isProduction = process.env.NODE_ENV === 'production'; diff --git a/webpack.config.main.js b/webpack.config.main.js index 72fbab6c..a4f82a59 100644 --- a/webpack.config.main.js +++ b/webpack.config.main.js @@ -1,3 +1,4 @@ +/* eslint-disable import/no-commonjs */ 'use strict'; const merge = require('webpack-merge'); diff --git a/webpack.config.renderer.js b/webpack.config.renderer.js index ac314d4e..9629d610 100644 --- a/webpack.config.renderer.js +++ b/webpack.config.renderer.js @@ -1,3 +1,4 @@ +/* eslint-disable import/no-commonjs */ 'use strict'; const path = require('path');