From 3690f04e4a84fa43c43b39e5e3884a20c9e0efe3 Mon Sep 17 00:00:00 2001 From: Yamagishi Kazutoshi Date: Sun, 11 Jun 2017 17:42:42 +0900 Subject: Remove comments for eslint-disable (#3691) --- config/webpack/production.js | 2 -- config/webpack/shared.js | 3 --- config/webpack/translationRunner.js | 2 -- 3 files changed, 7 deletions(-) (limited to 'config') diff --git a/config/webpack/production.js b/config/webpack/production.js index c93dd55e3..755464061 100644 --- a/config/webpack/production.js +++ b/config/webpack/production.js @@ -1,7 +1,5 @@ // Note: You must restart bin/webpack-dev-server for changes to take effect -/* eslint global-require: 0 */ - const webpack = require('webpack'); const merge = require('webpack-merge'); const CompressionPlugin = require('compression-webpack-plugin'); diff --git a/config/webpack/shared.js b/config/webpack/shared.js index 0f767fb47..8fd80a00d 100644 --- a/config/webpack/shared.js +++ b/config/webpack/shared.js @@ -1,8 +1,5 @@ // Note: You must restart bin/webpack-dev-server for changes to take effect -/* eslint global-require: 0 */ -/* eslint import/no-dynamic-require: 0 */ - const { existsSync } = require('fs'); const webpack = require('webpack'); const { basename, dirname, join, relative, resolve, sep } = require('path'); diff --git a/config/webpack/translationRunner.js b/config/webpack/translationRunner.js index 79bb6980f..097099b48 100644 --- a/config/webpack/translationRunner.js +++ b/config/webpack/translationRunner.js @@ -38,7 +38,6 @@ const validateLanguages = (languages, validators) => { }, []); if (invalidLanguages.length > 0) { - // eslint-disable-next-line no-console console.error(` Error: Specified invalid LANGUAGES: ${invalidLanguages.map(({ language, error }) => `* ${language}: ${error.message}`).join('\n')} @@ -73,7 +72,6 @@ ${availableLanguages.join(', ')} // check if message directory exists if (!fs.existsSync(messagesDirectory)) { - // eslint-disable-next-line no-console console.error(` Error: messagesDirectory not exists (${messagesDirectory}) -- cgit