Skip to content

Commit 93847ce

Browse files
pqCommit Queue
authored andcommitted
[productivity] server test launch config and generate task
Bug: #60070 Change-Id: Ia7dea87b6b2ac3c74745bb81807fe7347f1a552a Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/408340 Reviewed-by: Keerti Parthasarathy <[email protected]> Commit-Queue: Phil Quitslund <[email protected]>
1 parent dd4f341 commit 93847ce

File tree

5 files changed

+37
-0
lines changed

5 files changed

+37
-0
lines changed

pkg/analysis_server/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Include the vscode directory so we can share launch and task configs.
2+
!.vscode
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "test: all",
6+
"request": "launch",
7+
"type": "dart",
8+
"program": "test/test_all.dart",
9+
}
10+
]
11+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "generate files",
6+
"type": "shell",
7+
"command": "tool/spec/generate_files",
8+
"problemMatcher": []
9+
}
10+
]
11+
}

pkg/linter/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Include the vscode directory so we can share launch and task configs.
2+
!.vscode

pkg/linter/.vscode/launch.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "test: all",
6+
"request": "launch",
7+
"type": "dart",
8+
"program": "test/all.dart",
9+
}
10+
]
11+
}

0 commit comments

Comments
 (0)