From 0ff6912511b946418628e227a9526b6ed99d6601 Mon Sep 17 00:00:00 2001 From: Erling Hauan <148075168+ErlingHauan@users.noreply.github.com> Date: Mon, 18 Nov 2024 12:42:52 +0100 Subject: [PATCH] fix: make in-editor linting work in both JetBrains and VSCode (#14091) --- frontend/.eslintrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/.eslintrc.json b/frontend/.eslintrc.json index e5e903981a1..1a19ab58389 100644 --- a/frontend/.eslintrc.json +++ b/frontend/.eslintrc.json @@ -8,7 +8,7 @@ "plugins": ["jsx-a11y", "react", "react-hooks", "@typescript-eslint", "import"], "parser": "@typescript-eslint/parser", "parserOptions": { - "project": "./frontend/tsconfig.json" + "project": "./**/tsconfig.json" }, "rules": { "react/destructuring-assignment": "off",