Add configuration fields

This commit is contained in:
2021-12-06 14:24:32 +03:00
parent 01a0cb2b8a
commit 1ac5d64c55

View File

@@ -14,10 +14,23 @@
], ],
"main": "./out/extension.js", "main": "./out/extension.js",
"contributes": { "contributes": {
"commands": [ "configuration":[
{ {
"command": "gitcheck.helloWorld", "title": "Git User Check",
"title": "Hello World" "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"
}
}
} }
] ]
}, },