From ec4aa0b0a9307f7e2a2d47b30cead61cf9245f59 Mon Sep 17 00:00:00 2001 From: Danny Gleckler Date: Thu, 22 Aug 2024 11:29:52 -0400 Subject: [PATCH] Fix lint --- .eslintrc.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 702dd39..573c2c9 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,3 +1,11 @@ { - "extends": "brightspace/browser-config" + "extends": "brightspace/browser-config", + "overrides": [{ + "files": [ + "helpers/getLocalizeResources.js" + ], + "rules": { + "no-console": 0 + } + }] }