--- ruleName: no-console description: Bans the use of specified `console` methods. rationale: 'In general, `console` methods aren''t appropriate for production code.' optionsDescription: A list of method names to ban. options: type: array items: type: string optionExamples: - '[true, "log", "error"]' type: functionality optionsJSON: |- { "type": "array", "items": { "type": "string" } } layout: rule title: 'Rule: no-console' ---