From cc331f492682d307d4a9ea7fece5921bc2100888 Mon Sep 17 00:00:00 2001 From: Bryan Lee Date: Wed, 14 Aug 2024 14:58:18 -0400 Subject: [PATCH] Fix ESLint not working on VSCode #1128 (#1143) * Fix ESLint not working on VSCode #1128 * use `eslint.runtime` option instead to use system node version --------- Co-authored-by: juliusmarminge --- .vscode/settings.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index 333fb0def..5e4287f83 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -5,6 +5,7 @@ "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true, "eslint.rules.customizations": [{ "rule": "*", "severity": "warn" }], + "eslint.runtime": "node", "eslint.workingDirectories": [ { "pattern": "apps/*/" }, { "pattern": "packages/*/" },