From c9321cae62768e23f0774771477c8c97c7773e3a Mon Sep 17 00:00:00 2001 From: Max Petretta Date: Sun, 11 Sep 2022 12:04:44 -0400 Subject: [PATCH] Added ts no-undef exception --- .eslintrc.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.eslintrc.js b/.eslintrc.js index 6ae6087..7753207 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -11,4 +11,12 @@ module.exports = { rules: { "react/no-unescaped-entities": "off", }, + overrides: [ + { + files: ["*.ts", "*.tsx"], + rules: { + "no-undef": "off", + }, + }, + ], }