Closes #ISSUE Post #43854, we are advertising trailing comma support for our asset `jsonc` files to the JSON LSP. This results in it adding trailing commas on format of these files. This PR batch updates the formatting for these files, so they are not spuriously added as part of other PRs that happen to modify these files Release Notes: - N/A *or* Added/Fixed/Improved ...
30 lines
702 B
JSON
30 lines
702 B
JSON
// Some example tasks for common languages.
|
|
//
|
|
// For more documentation on how to configure debug tasks,
|
|
// see: https://zed.dev/docs/debugger
|
|
[
|
|
{
|
|
"label": "Debug active Python file",
|
|
"adapter": "Debugpy",
|
|
"program": "$ZED_FILE",
|
|
"request": "launch",
|
|
"cwd": "$ZED_WORKTREE_ROOT",
|
|
},
|
|
{
|
|
"label": "Debug active JavaScript file",
|
|
"adapter": "JavaScript",
|
|
"program": "$ZED_FILE",
|
|
"request": "launch",
|
|
"cwd": "$ZED_WORKTREE_ROOT",
|
|
"type": "pwa-node",
|
|
},
|
|
{
|
|
"label": "JavaScript debug terminal",
|
|
"adapter": "JavaScript",
|
|
"request": "launch",
|
|
"cwd": "$ZED_WORKTREE_ROOT",
|
|
"console": "integratedTerminal",
|
|
"type": "pwa-node",
|
|
},
|
|
]
|