LoginSignup
8
10

More than 5 years have passed since last update.

ESLint で console.log の error 回避

Last updated at Posted at 2015-05-08

ブロックコメントに eslint-disable no-console を入れる


/* eslint-disable no-console */

(function(window){
  "use strict";

  var console = window.console;
  var hasConsole = typeof console !== "undefined";
  if(hasConsole){
    console.log('hoge');
  }
}(this));

※ 使うことないけどね!

8
10
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
10