Skip to content
This repository was archived by the owner on Jan 19, 2019. It is now read-only.

Commit 3799a43

Browse files
committed
[CHORE] Add vscode debug config
1 parent 4e10d6a commit 3799a43

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ yarn.lock
1717
/.vscode/*
1818
!/.vscode/settings.json
1919
!/.vscode/extensions.json
20+
!/.vscode/launch.json

.vscode/launch.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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": "node",
9+
"request": "launch",
10+
"name": "Mocha Current File",
11+
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
12+
"args": [
13+
"--timeout",
14+
"999999",
15+
"--colors",
16+
"${workspaceFolder}/tests/lib/rules/${fileBasename}"
17+
],
18+
"console": "integratedTerminal",
19+
"internalConsoleOptions": "neverOpen"
20+
}
21+
]
22+
}

0 commit comments

Comments
 (0)