File tree 4 files changed +54
-0
lines changed
4 files changed +54
-0
lines changed Original file line number Diff line number Diff line change 42
42
" visualstudioexptteam.vscodeintellicode" ,
43
43
" mrmlnc.vscode-duplicate" ,
44
44
" mutantdino.resourcemonitor" ,
45
+ " eamodio.gitlens" ,
46
+ " codezombiech.gitignore" ,
47
+ " oderwat.indent-rainbow"
45
48
],
46
49
47
50
// Use 'forwardPorts' to make a list of ports inside the container available locally.
Original file line number Diff line number Diff line change 37
37
/unix.tag
38
38
/xml2rfc.egg-info
39
39
/__pycache__
40
+ dev-data
Original file line number Diff line number Diff line change
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
+ "name" : " Python: Run - Draft to HTML" ,
9
+ "type" : " python" ,
10
+ "request" : " launch" ,
11
+ "program" : " ${workspaceFolder}/xml2rfc/run.py" ,
12
+ "args" : [
13
+ " tests/input/draft-template.xml" ,
14
+ " -p" ,
15
+ " ${workspaceFolder}/dev-data" ,
16
+ " --html"
17
+ ],
18
+ "cwd" : " ${workspaceFolder}" ,
19
+ "env" : {
20
+ "PYTHONPATH" : " ."
21
+ },
22
+ "preLaunchTask" : " mkdir-dev-output" ,
23
+ "console" : " integratedTerminal"
24
+ },
25
+ {
26
+ "name" : " Python: Display Help" ,
27
+ "type" : " python" ,
28
+ "request" : " launch" ,
29
+ "program" : " ${workspaceFolder}/xml2rfc/run.py" ,
30
+ "args" : [" --help" ],
31
+ "cwd" : " ${workspaceFolder}" ,
32
+ "env" : {
33
+ "PYTHONPATH" : " ."
34
+ },
35
+ "console" : " integratedTerminal"
36
+ }
37
+ ]
38
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ // See https://go.microsoft.com/fwlink/?LinkId=733558
3
+ // for the documentation about the tasks.json format
4
+ "version" : " 2.0.0" ,
5
+ "tasks" : [
6
+ {
7
+ "label" : " mkdir-dev-output" ,
8
+ "type" : " shell" ,
9
+ "command" : " mkdir -p ${workspaceFolder}/dev-data"
10
+ }
11
+ ]
12
+ }
You can’t perform that action at this time.
0 commit comments