From 7526809a472637b6a8287e9b7751b3987554fae6 Mon Sep 17 00:00:00 2001 From: Barb Vazquez Date: Mon, 1 Apr 2024 15:51:50 -0400 Subject: [PATCH] Add .jsx as default file extension to scan in addition to .js --- react.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/react.js b/react.js index b44ae53..2fa0117 100644 --- a/react.js +++ b/react.js @@ -35,4 +35,9 @@ module.exports = { 'react/react-in-jsx-scope': 'error', 'react/sort-prop-types': 'off', }, + overrides: [ + { + files: ['*.js', '*.jsx'], + }, + ], };