From 862cb00e40aa6f094aff019a44f52ebfca90ab88 Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Tue, 22 Nov 2022 16:35:42 +0100 Subject: fix(frontend): mobx 6.7.0 typing Also bumps some dependencies and updates tsconfig.json The added workarounds should be remove once https://github.com/mobxjs/mobx/issues/3582 is resolved. --- subprojects/frontend/.eslintrc.cjs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'subprojects/frontend/.eslintrc.cjs') diff --git a/subprojects/frontend/.eslintrc.cjs b/subprojects/frontend/.eslintrc.cjs index 0bf65c4f..eadd3fb4 100644 --- a/subprojects/frontend/.eslintrc.cjs +++ b/subprojects/frontend/.eslintrc.cjs @@ -67,6 +67,8 @@ module.exports = { ], // Use prop spreading to conditionally add props with `exactOptionalPropertyTypes`. 'react/jsx-props-no-spreading': 'off', + // We use the `react-jsx` runtime, so there is no need to import `React`. + 'react/react-in-jsx-scope': 'off', }, overrides: [ { -- cgit v1.2.3-54-g00ecf