跳转到内容

noConsole (since v1.6.0)

Diagnostic Category: lint/nursery/noConsole

Sources:

Disallow the use of console.

console.error('hello world')
code-block.js:1:1 lint/nursery/noConsole  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

   Don't use console
  
  > 1 │ console.error('hello world')
   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    2 │ 
  
   Usage of console is disallowed.
  
   Unsafe fix: Remove console
  
    1 │ console.error('hello·world')
  ----------------------------