From 795bf32e9f61e7d502adee31687f2af40494c9c4 Mon Sep 17 00:00:00 2001 From: Suzy Mueller Date: Wed, 25 Nov 2020 12:31:08 -0500 Subject: [PATCH] package.json: Add "template" property to go.addTags configuration Add the missing template property for addTags. Fixes golang/vscode-go#965 Change-Id: I930e405f0dd1fe0267c8a321549dca49258e2772 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/273187 Trust: Suzy Mueller Run-TryBot: Suzy Mueller Reviewed-by: Hyang-Ah Hana Kim --- package.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/package.json b/package.json index 46ad44a575..1890bdb84b 100644 --- a/package.json +++ b/package.json @@ -1697,6 +1697,11 @@ ], "default": "snakecase", "description": "Transformation rule used by Go: Add Tags command to add tags" + }, + "template": { + "type": "string", + "default": "", + "description": "Custom format used by Go: Add Tags command for the tag value to be applied" } }, "additionalProperties": false,