diff --git a/eslint.config.js b/eslint.config.js index 42e9ac9..e89a110 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -59,6 +59,9 @@ export default tseslint.config( rules: { // TypeScript props typing supersedes prop-types in React 19 (RESEARCH Open Question 2) 'react/prop-types': 'off', + // React 19 uses the automatic JSX transform (jsx: "react-jsx") — React does not + // need to be in scope. The flat.recommended config enables this rule; we disable it. + 'react/react-in-jsx-scope': 'off', }, },