Skip to content

Commit ed047e5

Browse files
Add tasks.json
1 parent 3102289 commit ed047e5

2 files changed

Lines changed: 16 additions & 1 deletion

File tree

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
.metals/
2-
.vscode/
32
target/
43
generated/
54
project/

.vscode/tasks.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "Test",
6+
"command": "sbt run test",
7+
"type": "shell",
8+
"args": [],
9+
"problemMatcher": [],
10+
"presentation": {
11+
"reveal": "always"
12+
},
13+
"group": "build"
14+
}
15+
]
16+
}

0 commit comments

Comments
 (0)