From 1ac5d64c55d4ba5a9baf3af4af47cd7283207df6 Mon Sep 17 00:00:00 2001 From: Maksim Syomochkin Date: Mon, 6 Dec 2021 14:24:32 +0300 Subject: [PATCH] Add configuration fields --- package.json | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index a756284..5c6ca68 100644 --- a/package.json +++ b/package.json @@ -14,10 +14,23 @@ ], "main": "./out/extension.js", "contributes": { - "commands": [ + "configuration":[ { - "command": "gitcheck.helloWorld", - "title": "Hello World" + "title": "Git User Check", + "properties": { + "gitcheck.domain": { + "type": "string", + "description": "remote domain for check" + }, + "gitcheck.user": { + "type":"string", + "description": "Username for gitcheck domain" + }, + "gitcheck.email": { + "type":"string", + "description": "Email for gitcheck domain" + } + } } ] },