From f6e1c171ae765e239bb40ad564693e225f33938e Mon Sep 17 00:00:00 2001 From: Michael Ficocelli Date: Tue, 19 Sep 2023 12:24:12 -0400 Subject: [PATCH] MISC: Add configuration to eslintrc to fix the warning thrown when linting (#814) --- .eslintrc.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.eslintrc.js b/.eslintrc.js index ab31d4fe9..018335f8c 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -35,4 +35,9 @@ module.exports = { "@typescript-eslint/no-explicit-any": "off", "react/no-unescaped-entities": "off", }, + settings: { + react: { + version: "detect", + }, + }, };