From 0b93cf490acfad89e9467905ffc0f7c13edce8a0 Mon Sep 17 00:00:00 2001 From: ruedap Date: Sat, 30 May 2020 23:32:12 +0900 Subject: [PATCH] build(eslint): Turn off react/react-in-jsx-scope --- .eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.js b/.eslintrc.js index 38b24415..0995928d 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -40,6 +40,7 @@ module.exports = { 'no-new': ['off'], 'react/prop-types': ['off'], 'no-console': ['warn'], + 'react/react-in-jsx-scope': 'off', 'react/jsx-curly-spacing': ['error', { when: 'always', allowMultiline: true,