- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpythoning_stuff.code-workspace
More file actions
Latest commit
27 lines (27 loc) · 688 Bytes
/
Copy pathpythoning_stuff.code-workspace
File metadata and controls
27 lines (27 loc) · 688 Bytes
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"[python]": {
"diffEditor.ignoreTrimWhitespace": false,
"editor.defaultColorDecorators": "never",
"editor.formatOnType": true,
"editor.wordBasedSuggestions": "matchingDocuments",
"editor.defaultFormatter": "charliermarsh.ruff"
},
"python.analysis.autoSearchPaths": false,
"python.analysis.autoIndent": false,
"files.autoSave": "afterDelay",
"basedpyright.analysis.typeCheckingMode": "basic",
"basedpyright.analysis.inlayHints.callArgumentNamesMatching": true,
"python.venvFolders": [
"./.venv"
],
"ruff.lint.preview": true,
"ruff.nativeServer": true,
"ruff.trace.server": "messages",
}
}