-
Notifications
You must be signed in to change notification settings - Fork 36
/
integration.code-workspace
57 lines (57 loc) · 2.11 KB
/
integration.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
{
"folders": [
{
"path": "/workspaces/alarmdotcom",
},
{
"path": "/workspaces/pyalarmdotcomajax",
},
],
"settings": {
"mypy-type-checker.args": ["--config-file=pyproject.toml"],
"mypy-type-checker.reportingScope": "workspace",
"mypy-type-checker.importStrategy": "useBundled",
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.formatOnType": false,
"python.analysis.autoSearchPaths": false,
"python.analysis.extraPaths": ["/workspaces/pyalarmdotcomajax"],
"python.languageServer": "Pylance",
"python.testing.pytestEnabled": true,
"python.analysis.exclude": ["/**/.*/", "**/__pycache__"],
"python.analysis.diagnosticMode": "workspace",
"python.analysis.typeCheckingMode": "off",
"python.analysis.include": [
"**/custom_components/alarmdotcom",
"**/pyalarmdotcomajax/pyalarmdotcomajax",
"**/pyalarmdotcomajax/tests",
"**/pyalarmdotcomajax/examples",
],
"files.associations": {
"*.yaml": "home-assistant",
},
"python.analysis.autoImportCompletions": true,
"python.analysis.inlayHints.callArgumentNames": "off",
"python.analysis.inlayHints.functionReturnTypes": false,
"python.analysis.inlayHints.pytestParameters": false,
"python.analysis.inlayHints.variableTypes": false,
"python.analysis.packageIndexDepths": [
{
"name": "pyalarmdotcomajax",
"depth": 5,
"includeAllSymbols": true,
},
],
"githubPullRequests.ignoredPullRequestBranches": ["master"],
"[python]": {
"editor.codeActionsOnSave": {
"source.fixAll.ruff": "explicit",
"source.organizeImports": "explicit",
},
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
},
},
}