From 9aa9709ea12b3a1d5f1aecabaf5466fe7edcee3b Mon Sep 17 00:00:00 2001 From: Sebastian Borchers Date: Thu, 19 Nov 2020 00:22:55 +0100 Subject: [PATCH] package.json: add missing transform variants for go.addTags This simply allows in the settings.json or UI to use the missing 'lispcase', 'pascalcase' and 'keep' transform options for the go.addTags command. Fixes #906 --- package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 10987a8f00..eea7dac46a 100644 --- a/package.json +++ b/package.json @@ -1689,7 +1689,10 @@ "type": "string", "enum": [ "snakecase", - "camelcase" + "camelcase", + "lispcase", + "pascalcase", + "keep" ], "default": "snakecase", "description": "Transformation rule used by Go: Add Tags command to add tags"