diff --git a/.oxlintrc.json b/.oxlintrc.json index 156569ec5df..83ab91d8e38 100644 --- a/.oxlintrc.json +++ b/.oxlintrc.json @@ -34,16 +34,20 @@ "storybook-static/**" ], "rules": { + "react/react-in-jsx-scope": "off", "react/prop-types": "off", "unicorn/filename-case": "off", "unicorn/no-null": "off", "unicorn/prevent-abbreviations": "off", - "no-unused-vars": ["warn", { - "argsIgnorePattern": "^_", - "varsIgnorePattern": "^_", - "caughtErrorsIgnorePattern": "^_", - "destructuredArrayIgnorePattern": "^_", - "ignoreRestSiblings": true - }] + "no-unused-vars": [ + "warn", + { + "argsIgnorePattern": "^_", + "varsIgnorePattern": "^_", + "caughtErrorsIgnorePattern": "^_", + "destructuredArrayIgnorePattern": "^_", + "ignoreRestSiblings": true + } + ] } }