Added the repository settings

This commit is contained in:
Cédric Belin
2018-11-01 23:23:05 +01:00
parent 24ecee12ba
commit cadb3a774c
8 changed files with 104 additions and 0 deletions

7
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,7 @@
{
"editor.insertSpaces": true,
"editor.tabSize": 2,
"files.encoding": "utf8",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true
}

36
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,36 @@
{
"version": "2.0.0",
"tasks": [
{
"command": "robo clean",
"label": "robo : clean",
"problemMatcher": [],
"type": "shell"
},
{
"command": "robo doc",
"label": "robo : doc",
"problemMatcher": [],
"type": "shell"
},
{
"command": "robo lint",
"label": "robo : lint",
"problemMatcher": [],
"type": "shell"
},
{
"command": "robo test",
"group": {"isDefault": true, "kind": "build"},
"label": "robo : test",
"problemMatcher": [],
"type": "shell"
},
{
"command": "robo upgrade",
"label": "robo : upgrade",
"problemMatcher": [],
"type": "shell"
}
]
}