-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmqttany.code-workspace
62 lines (62 loc) · 1.61 KB
/
mqttany.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
56
57
58
59
60
61
62
{
"folders": [
{
"path": "."
}
],
"settings": {
"python.analysis.diagnosticMode": "workspace",
"python.analysis.extraPaths": [
"./mqttany"
],
"python.autoComplete.extraPaths": [
"./mqttany"
],
"python.formatting.provider": "black",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"editor.renderWhitespace": "all",
"editor.rulers": [
88
],
"[python]": {
"editor.formatOnSave": true,
},
"[yaml]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.autoIndent": "keep",
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
}
},
"[markdown]": {
"editor.wordWrap": "on",
"editor.quickSuggestions": {
"other": "off",
"comments": "off",
"strings": "off"
},
"files.trimTrailingWhitespace": false
}
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "MQTTany",
"type": "python",
"request": "launch",
"program": "./mqttany/mqttany.py",
"console": "integratedTerminal",
"args": [
"-vv",
"test.yml"
]
}
]
}
}