From 1acf794b16adf396538cefaf0b4f6f722e5b1ea2 Mon Sep 17 00:00:00 2001 From: Remy van der Wereld Date: Thu, 21 Nov 2024 10:54:31 +0100 Subject: [PATCH] Update ESLint configuration to disable warning for unsupported TypeScript versions --- .eslintrc.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.eslintrc.js b/.eslintrc.js index 5695d3496..5eba9fd17 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -2,6 +2,9 @@ module.exports = { extends: [ "react-app" ], + "parserOptions": { + "warnOnUnsupportedTypeScriptVersion": false + }, rules: { "arrow-body-style": ["error", "as-needed"], "block-spacing": ["error", "always"],