forked from CrazyIvan359/openhab-helper-libraries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openhab-helper-libraries.code-workspace
74 lines (70 loc) · 3.09 KB
/
openhab-helper-libraries.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
63
64
65
66
67
68
69
70
71
72
73
74
{
"folders": [
{
"path": "."
}
],
"settings": {
// General
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"editor.renderWhitespace": "all",
"editor.rulers": [
80
],
// Python
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.autoComplete.extraPaths": [
"./Core/automation/lib/python",
"./Community/Alexa Speak and Respond/automation/lib/python",
"./Community/Area Triggers and Actions/automation/lib/python",
"./Community/AutoRemote/automation/lib/python",
"./Community/ClickaTell/automation/lib/python",
"./Community/Delete and Rediscover Z-Wave Things/automation/lib/python",
"./Community/Esper/automation/lib/python",
"./Community/ideAlarm/automation/lib/python",
"./Community/Mode (Time of Day)/automation/lib/python",
"./Community/NOAA Weather Alerts/automation/lib/python",
"./Community/OpenWeatherMap/automation/lib/python",
"./Community/Sonos/automation/lib/python",
"./Community/Trash alert (Netherlands)/automation/lib/python",
"./Community/TTS (flite)/automation/lib/python",
"./Community/WeatherStationUploader/automation/lib/python"
],
// Python Typing
"python.analysis.diagnosticMode": "workspace",
"python.analysis.stubPath": "./Core/typings",
"python.analysis.extraPaths": [
"./Core/automation/lib/python",
"./Community/Alexa Speak and Respond/automation/lib/python",
"./Community/Area Triggers and Actions/automation/lib/python",
"./Community/AutoRemote/automation/lib/python",
"./Community/ClickaTell/automation/lib/python",
"./Community/Delete and Rediscover Z-Wave Things/automation/lib/python",
"./Community/Esper/automation/lib/python",
"./Community/ideAlarm/automation/lib/python",
"./Community/Mode (Time of Day)/automation/lib/python",
"./Community/NOAA Weather Alerts/automation/lib/python",
"./Community/OpenWeatherMap/automation/lib/python",
"./Community/Sonos/automation/lib/python",
"./Community/Trash alert (Netherlands)/automation/lib/python",
"./Community/TTS (flite)/automation/lib/python",
"./Community/WeatherStationUploader/automation/lib/python"
],
// Javascript
"typescript.validate.enable": false,
"typescript.format.enable": false,
"javascript.validate.enable": false,
//"javascript.format.enable": false,
"javascript.format.semicolons": "insert",
"eslint.format.enable": true,
"[javascript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint" ,
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "modifications",
},
// Sphinx
"restructuredtext.confPath": "${workspaceFolder}/Sphinx"
}
}