Chore: Add vscode ESLint debug target (#98277)

This commit is contained in:
Tom Ratcliffe 2025-01-24 09:34:32 +00:00 committed by GitHub
parent a9f0e15778
commit 8c2a74bd74
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

9
.vscode/launch.json vendored
View File

@ -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",