-
Notifications
You must be signed in to change notification settings - Fork 1
/
qutes.code-workspace
55 lines (55 loc) · 1.16 KB
/
qutes.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"folders": [
{
"path": "."
}
],
"settings": {
"antlr4.generation": {
"outputDir": "../../src/qutes_antlr",
"mode": "external",
"language": "Python3",
"listeners": true,
"visitors": true
},
"cSpell.words": [
"Antlr",
"Qiskit",
"qustring",
"qubit",
"quint",
],
"pylint.importStrategy": "fromEnvironment",
"python.testing.cwd": "./src",
"python.testing.unittestArgs": [
"-v",
"-p",
"test*.py"
],
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true,
"python.testing.autoTestDiscoverOnSaveEnabled": true,
},
"extensions": {
"recommendations": [
"mike-lischke.vscode-antlr4",
"ms-python.python",
"gruntfuggly.todo-tree",
"gabrielemessina.qutes"
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Qutes: Run test source code",
"type": "debugpy",
"request": "launch",
"program": "src/qutes.py",
"console": "integratedTerminal",
"args": ["-image","-circuit","-iter","1","./specification/grammar/grammar_tests.qut"],
"justMyCode": true
},
]
}
}