.vscode added to ignored files

This commit is contained in:
SJost 2018-10-31 13:43:25 +01:00
parent 75dcb120ed
commit e5a0cecd7e
2 changed files with 1 additions and 36 deletions

1
.gitignore vendored
View File

@ -31,3 +31,4 @@ src/Handler/Course.SnapCustom.hs
.stack-work-*
.directory
tags
.vscode

36
.vscode/tasks.json vendored
View File

@ -1,36 +0,0 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "start",
"type": "shell",
"command": "./start.sh",
"group": "test",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true
}
},
{
"label": "build",
"type": "shell",
"command": "stack build --flag uniworx:dev --flag uniworx:library-only",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true
}
}
]
}