-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
32 lines (32 loc) · 1.04 KB
/
Copy pathsettings.json
File metadata and controls
32 lines (32 loc) · 1.04 KB
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
{
"editor.detectIndentation": false,
"editor.renderWhitespace": "all",
"editor.tabSize": 4,
"editor.minimap.renderCharacters": false,
"editor.renderControlCharacters": true,
"debug.showBreakpointsInOverviewRuler": true,
"python.languageServer": "Pylance",
"python.linting.enabled": false,
"python.defaultInterpreterPath": "python3",
"python.analysis.extraPaths": [
"${env:LOCALAPPDATA}/Programs/Python/Python310/Lib/site-packages",
"${env:APPDATA}/Python/Python310/site-packages"
],
"python.analysis.typeCheckingMode": "strict",
"autoDocstring.docstringFormat": "google",
"autoDocstring.quoteStyle": "'''",
"files.exclude": {
"**/__pycache__": true,
"**/*.pyc": true
},
"python.testing.unittestArgs": [
"-v",
"-s",
"./tests",
"-p",
"test_*.py"
],
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true,
"python.analysis.diagnosticMode": "workspace",
}