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');