-
Notifications
You must be signed in to change notification settings - Fork 0
/
quality-result-gui.code-workspace
62 lines (62 loc) · 1.79 KB
/
quality-result-gui.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
{
"extensions": {
"recommendations": [
"editorconfig.editorconfig",
"mikestead.dotenv",
"ms-python.python",
"ms-python.mypy-type-checker",
"ms-python.black-formatter",
"ms-python.flake8",
"charliermarsh.ruff",
]
},
"folders": [
{
"path": "."
}
],
"settings": {
"python.languageServer": "Pylance",
// Tests
"python.testing.pytestEnabled": true,
// Linting
"flake8.importStrategy": "fromEnvironment",
"ruff.importStrategy": "fromEnvironment",
"mypy-type-checker.importStrategy": "fromEnvironment",
// Formatting
"isort.check": false,
"black-formatter.importStrategy": "fromEnvironment",
"[python]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports.ruff": "explicit",
"source.fixAll": "explicit"
},
"editor.defaultFormatter": "ms-python.black-formatter",
},
"files.associations": {
"*.ts": "xml"
},
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
},
"launch": {
"configurations": [
{
"name": "QGIS debugpy",
"type": "python",
"request": "attach",
"connect": {
"host": "localhost",
"port": 5678
},
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "${workspaceFolder}"
}
]
}
],
}
}