From 023381624d9f620be857237059fb697fa1bbfbd3 Mon Sep 17 00:00:00 2001 From: Justin Coyne Date: Tue, 29 Oct 2024 16:04:14 -0500 Subject: [PATCH] Disable react/prop-types eslint rule See https://github.com/jsx-eslint/eslint-plugin-react/issues/3753 --- .eslintrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc b/.eslintrc index 596e1115f2..4866342f5c 100644 --- a/.eslintrc +++ b/.eslintrc @@ -43,6 +43,7 @@ "ignoreRegExpLiterals": true }], "react/jsx-uses-react": "off", + "react/prop-types": "off", "react/react-in-jsx-scope": "off", "react-hooks/exhaustive-deps": "error", "testing-library/render-result-naming-convention": "off",