LoginSignup
3
0

More than 3 years have passed since last update.

[ESLint]warning Unexpected console statement no-console の無効化

Last updated at Posted at 2020-12-16

はじめに

Javascriptでconsole.logを使用してデバッグをすると、eslintに引っかかりwarningエラーが出ることがある。その際の無効化の方法を備忘録をして残します。

エラー

warning  Unexpected console statement  no-console

対処方法

// eslint-disable-next-line no-console を追加する

test.js
test() {
  // eslint-disable-next-line no-console
  console.log('test')
}

参考

3
0
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
3
0