Skip to content

Commit ef86663

Browse files
committed
add launch config
1 parent d3fa19d commit ef86663

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
*.class
22
*.log
3-
.vscode
3+
.vscode/settings.json
44
.scala-build
55
.metals
66
.bsp

.vscode/launch.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "scala",
9+
"request": "launch",
10+
"name": "test",
11+
"buildTarget": "scautable.jvm.test",
12+
"testClass": "io.github.quafadas.scautable.CSVSuite",
13+
"args": [
14+
"-oD"
15+
]
16+
}
17+
]
18+
}

0 commit comments

Comments
 (0)