From 7e1d71df199ed9ada1640576745ae5a5e0dbfe35 Mon Sep 17 00:00:00 2001 From: Tom Carman Date: Wed, 22 May 2024 16:14:11 +0100 Subject: [PATCH] chore: turn off eslint no-console whilst actively developing --- .eslintrc.cjs | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index e4ef05f..da3aa38 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -3,5 +3,6 @@ module.exports = { root: true, rules: { header: 'off', + 'no-console': 'off', }, };