superlint/.vscode/launch.json

17 lines
404 B
JSON
Raw Normal View History

{
"version": "0.2.0",
"configurations": [
{
"type": "bashdb",
"request": "launch",
2020-06-19 12:54:23 -04:00
"name": "Test Linter",
"program": ".vscode/testlinter.sh",
"cwd": "${workspaceFolder}",
2020-06-19 12:54:23 -04:00
"internalConsoleOptions": "openOnSessionStart",
"presentation": {
"group": "aLinter"
}
}
]
2020-11-05 17:21:41 -05:00
}