From 8c2a74bd74880920b815781e8f8d26da52d325ed Mon Sep 17 00:00:00 2001 From: Tom Ratcliffe Date: Fri, 24 Jan 2025 09:34:32 +0000 Subject: [PATCH] Chore: Add vscode ESLint debug target (#98277) --- .vscode/launch.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 80bafb80307..67c4f82699b 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -96,6 +96,15 @@ "NODE_ENV": "test" } }, + { + "name": "Debug ESLint", + "type": "node", + "request": "launch", + "runtimeExecutable": "yarn", + "runtimeArgs": ["run", "eslint", "${file}"], + "console": "integratedTerminal", + "internalConsoleOptions": "neverOpen" + }, { "name": "Debug Go test", "type": "go",