Skip to content

Commit 0015a07

Browse files
committed
Add .vscode folder
1 parent 377126c commit 0015a07

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.vscode/tasks.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "swift build",
6+
"type": "shell",
7+
"command": "swift build",
8+
"problemMatcher": [],
9+
"group": {
10+
"kind": "build",
11+
"isDefault": true
12+
}
13+
},
14+
{
15+
"label": "swift test",
16+
"type": "shell",
17+
"command": "./run_tests",
18+
"problemMatcher": [],
19+
"group": {
20+
"kind": "test",
21+
"isDefault": true
22+
}
23+
},
24+
{
25+
"label": "swift clean",
26+
"type": "shell",
27+
"command": "swift package clean",
28+
"problemMatcher": [],
29+
}
30+
]
31+
}

0 commit comments

Comments
 (0)