forked from bryant-finney/python-dsa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpython-dsa.code-workspace
59 lines (59 loc) · 1.67 KB
/
python-dsa.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.codeActionsOnSave": {
"source.fixAll": "always",
"source.organizeImports": "always"
},
"editor.defaultFormatter": "charliermarsh.ruff",
"mypy-type-checker.args": ["--config-file=pyproject.toml", "--show-error-codes"],
"mypy-type-checker.importStrategy": "fromEnvironment",
"mypy-type-checker.interpreter": [],
"mypy-type-checker.preferDaemon": true,
"mypy-type-checker.reportingScope": "workspace",
"python.analysis.autoFormatStrings": true,
"python.analysis.autoImportCompletions": true,
"python.analysis.completeFunctionParens": true,
"python.analysis.diagnosticMode": "workspace",
"python.analysis.typeCheckingMode": "strict",
"python.defaultInterpreterPath": "python3",
"ruff.lint.run": "onSave",
"ruff.showNotifications": "always"
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "pytest: Current File",
"type": "debugpy",
"request": "launch",
"module": "pytest",
"console": "integratedTerminal",
"args": ["${file}"],
"justMyCode": false
}
],
"compounds": []
},
"extensions": {
"recommendations": [
"mhutchie.git-graph",
"donjayamanne.git-extension-pack",
"eamodio.gitlens",
"ms-python.vscode-pylance",
"streetsidesoftware.code-spell-checker",
"ms-toolsai.jupyter",
"ms-python.python",
"ms-python.debugpy",
"donjayamanne.python-environment-manager",
"charliermarsh.ruff",
"ms-python.mypy-type-checker",
"waderyan.gitblame",
"tamasfe.even-better-toml"
]
}
}