Mercurial > code > home > repos > light9
annotate .vscode/settings.json @ 2428:5f4c8705cf73
vscode
author | drewp@bigasterisk.com |
---|---|
date | Tue, 28 May 2024 15:32:48 -0700 |
parents | 4b8f8fabeb2f |
children |
rev | line source |
---|---|
2047 | 1 { |
2203
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
2 "python.analysis.autoFormatStrings": true, |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
3 "python.analysis.diagnosticMode": "workspace", |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
4 "python.analysis.enablePytestSupport": true, |
2222 | 5 "python.analysis.extraPaths": [ |
2424 | 6 "/home/drewp/.local/share/pdm/venvs/light9-zxQNOBNq-3.11/lib/python3.11/site-packages", |
2222 | 7 "/my/proj/rdfdb" |
8 ], | |
2424 | 9 "python.autoComplete.extraPaths": [ |
10 "/home/drewp/.local/share/pdm/venvs/light9-zxQNOBNq-3.11/lib/python3.11/site-packages", | |
11 "/my/proj/rdfdb" | |
12 ], | |
13 "python.defaultInterpreterPath": "/home/drewp/.local/share/pdm/venvs/light9-zxQNOBNq-3.11/bin/python", | |
2203
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
14 "python.testing.pytestEnabled": true, |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
15 "python.testing.pytestPath": "./bin/pytest", |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
16 "pythonTestExplorer.testFramework": "pytest", |
2062 | 17 "toTypeScript.fixUnreachableCode": false, |
18 "toTypeScript.fixUnusedLabel": false, | |
2113 | 19 "toTypeScript.forgottenThisPropertyAccess": false, |
2203
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
20 "launch": { |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
21 "configurations": [ |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
22 { |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
23 "name": "Python: File", |
2424 | 24 "type": "debugpy", |
2203
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
25 "request": "launch", |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
26 "program": "${file}", |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
27 "justMyCode": true, |
2424 | 28 "python": "/home/drewp/.local/share/pdm/venvs/light9-zxQNOBNq-3.11/bin/python" |
2203
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
29 } |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
30 ], |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
31 "compounds": [] |
2257 | 32 }, |
33 "vitest.commandLine": "pnpm exec vitest", | |
2414 | 34 "vitest.enable": true, |
35 "tabnine.codeLensEnabled": false, | |
2424 | 36 "codeium.enableSearch": true, |
37 "python.formatting.provider": "eeyore.yapf", | |
38 "[python]": { | |
39 "editor.formatOnSaveMode": "file", | |
40 "editor.formatOnSave": true, | |
41 "editor.defaultFormatter": "eeyore.yapf", | |
42 "editor.formatOnType": false | |
43 }, | |
44 "editor.defaultFormatter": "eeyore.yapf", | |
45 "python.languageServer": "Pylance", | |
2428 | 46 "python.analysis.completeFunctionParens": false, |
2424 | 47 "python.analysis.typeCheckingMode": "standard" |
48 } |