From 56303cfbae6c481df6fca345e70967eeff60b4a9 Mon Sep 17 00:00:00 2001 From: Digikwal <79085106+digikwal@users.noreply.github.com> Date: Tue, 24 Jun 2025 23:41:22 +0200 Subject: [PATCH] fix: remove comments to satisfy JSON linting --- development/vscode-example/tasks.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/development/vscode-example/tasks.json b/development/vscode-example/tasks.json index 7c0e6739..5ec905c1 100644 --- a/development/vscode-example/tasks.json +++ b/development/vscode-example/tasks.json @@ -1,11 +1,10 @@ { - // See https://go.microsoft.com/fwlink/?LinkId=733558 - // for the documentation about the tasks.json format + "_comment": "See https://go.microsoft.com/fwlink/?LinkId=733558 for the documentation about the tasks.json format", "version": "2.0.0", "tasks": [ { "label": "Clean Honcho SocketIO Watch Schedule Worker", - "detail": "When stopping the debug process from vscode window, the honcho won't receive the SIGINT signal. This task will send the SIGINT signal to the honcho processes.", + "_comment_detail": "When stopping the debug process from vscode window, the honcho won't receive the SIGINT signal. This task will send the SIGINT signal to the honcho processes.", "type": "shell", "command": "pkill -SIGINT -f bench; pkill -SIGINT -f socketio", "isBackground": false,