noConsole (not released)
Diagnostic Category: lint/nursery/noConsole
Source: no-console
Disallow the use of console
.
Examples
Section titled ExamplesInvalid
Section titled Invalidconsole.error('hello world')
nursery/noConsole.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')
│ ----------------------------