-
Notifications
You must be signed in to change notification settings - Fork 4
/
settings.json
33 lines (33 loc) · 945 Bytes
/
settings.json
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
{
"editor.accessibilitySupport": "on",
"ruff.enable": true,
"python.autoComplete.extraPaths": [
"source",
"miscDeps/python"
],
"python.analysis.extraPaths": [
"source",
"miscDeps/python"
],
"python.analysis.stubPath": "${workspaceFolder}/.vscode/typings",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.eol": "\n",
"editor.insertSpaces": false,
"python.testing.unittestArgs": [
"-v",
"-s",
"tests.unit",
"-p",
"test_*.py"
],
"autoDocstring.docstringFormat": "sphinx-notypes",
"python.testing.pytestEnabled": false,
"python.testing.nosetestsEnabled": false,
"python.testing.unittestEnabled": true,
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff"
},
"python.analysis.autoImportCompletions": true,
"python.analysis.importFormat": "relative"
}