File tree 3 files changed +78
-1
lines changed
3 files changed +78
-1
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ nbproject
13
13
# IDEs & Text Editors
14
14
.idea
15
15
.sublime- *
16
- .vscode
16
+ .vscode / settings.json
17
17
.netbeans
18
18
nbproject
19
19
Original file line number Diff line number Diff line change
1
+ {
2
+ "version" : " 0.2.0" ,
3
+ "configurations" : [
4
+ {
5
+ "name" : " Run tests" ,
6
+ "type" : " node" ,
7
+ "request" : " launch" ,
8
+ "program" : " ${workspaceRoot}/node_modules/mocha/bin/_mocha" ,
9
+ "stopOnEntry" : false ,
10
+ "args" : [
11
+ " --timeout=600000"
12
+ ],
13
+ "cwd" : " ${workspaceRoot}" ,
14
+ "preLaunchTask" : null ,
15
+ "runtimeExecutable" : null ,
16
+ "runtimeArgs" : [
17
+ " --nolazy"
18
+ ],
19
+ "env" : {
20
+ "NODE_ENV" : " development"
21
+ },
22
+ "console" : " internalConsole" ,
23
+ "sourceMaps" : false ,
24
+ "outFiles" : []
25
+ },
26
+ {
27
+ "name" : " Attach" ,
28
+ "type" : " node" ,
29
+ "request" : " attach" ,
30
+ "port" : 5858 ,
31
+ "address" : " localhost" ,
32
+ "restart" : false ,
33
+ "sourceMaps" : false ,
34
+ "outFiles" : [],
35
+ "localRoot" : " ${workspaceRoot}" ,
36
+ "remoteRoot" : null
37
+ },
38
+ {
39
+ "name" : " Attach to Process" ,
40
+ "type" : " node" ,
41
+ "request" : " attach" ,
42
+ "processId" : " ${command.PickProcess}" ,
43
+ "port" : 5858 ,
44
+ "sourceMaps" : false ,
45
+ "outFiles" : []
46
+ }
47
+ ]
48
+ }
Original file line number Diff line number Diff line change
1
+ // Available variables which can be used inside of strings.
2
+ // ${workspaceRoot}: the root folder of the team
3
+ // ${file}: the current opened file
4
+ // ${fileBasename}: the current opened file's basename
5
+ // ${fileDirname}: the current opened file's dirname
6
+ // ${fileExtname}: the current opened file's extension
7
+ // ${cwd}: the current working directory of the spawned process
8
+
9
+ {
10
+ "version" : " 0.1.0" ,
11
+ "command" : " npm" ,
12
+ "isShellCommand" : true ,
13
+ "suppressTaskName" : true ,
14
+ "tasks" : [
15
+ {
16
+ "taskName" : " lint" ,
17
+ "args" : [" run" , " lint" , " --silent" ],
18
+ "showOutput" : " always" ,
19
+ "problemMatcher" : " $eslint-stylish" ,
20
+ "isBuildCommand" : true
21
+ },
22
+ {
23
+ "taskName" : " test" ,
24
+ "args" : [" run" , " test" , " --silent" ],
25
+ "showOutput" : " always" ,
26
+ "isTestCommand" : true
27
+ }
28
+ ]
29
+ }
You can’t perform that action at this time.
0 commit comments