no-console
Configuration
rslint.config.ts
Rule Details
Disallow the use of console. In environments where console is not intended (such as production code), using console may be considered a debugging leftover.
Examples of incorrect code for this rule:
Examples of correct code for this rule:
Options
allow: An array of console method names that are allowed (e.g.,["warn", "error"]).