From 0fd83920676d9999fffbb6c64572e9b425ee98a6 Mon Sep 17 00:00:00 2001 From: Stefan Haller Date: Sat, 9 Sep 2023 13:42:27 +0200 Subject: [PATCH] Format launch.json with Prettier --- .vscode/launch.json | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 6bddacc40..fcf19081f 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -7,7 +7,10 @@ "request": "launch", "mode": "auto", "program": "main.go", - "args": ["--debug", "--use-config-file=${workspaceFolder}/.vscode/debugger_config.yml"], + "args": [ + "--debug", + "--use-config-file=${workspaceFolder}/.vscode/debugger_config.yml" + ], "console": "integratedTerminal", "presentation": { "hidden": true @@ -19,17 +22,23 @@ "request": "launch", "mode": "auto", "program": "main.go", - "args": ["--logs", "--use-config-file=${workspaceFolder}/.vscode/debugger_config.yml"], + "args": [ + "--logs", + "--use-config-file=${workspaceFolder}/.vscode/debugger_config.yml" + ], "console": "integratedTerminal", "presentation": { "hidden": true } - } + }, ], "compounds": [ { "name": "Run with logs", - "configurations": ["Tail Lazygit logs", "Debug Lazygit"], + "configurations": [ + "Tail Lazygit logs", + "Debug Lazygit" + ], "stopAll": true } ]