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",
"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"
}
}
}
]
},