Mercurial > code > home > repos > light9
annotate .vscode/settings.json @ 2405:69ca2b2fc133
overcomplicated attempt at persisting the pane layout in the rdf graph
this was hard because we have to somehow wait for the graph to load before config'ing the panes
author | drewp@bigasterisk.com |
---|---|
date | Fri, 17 May 2024 16:58:26 -0700 |
parents | 8ebf79d6b957 |
children | 6c61735514e9 |
rev | line source |
---|---|
2047 | 1 { |
2203
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
2 "djlint.pythonPath": "./bin/python", |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
3 "python.analysis.autoFormatStrings": true, |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
4 "python.analysis.diagnosticMode": "workspace", |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
5 "python.analysis.enablePytestSupport": true, |
2222 | 6 "python.analysis.extraPaths": [ |
7 "__pypackages__/3.10/lib", | |
8 "/my/proj/rdfdb" | |
9 ], | |
2203
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
10 "python.autoComplete.extraPaths": ["__pypackages__/3.10/lib"], |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
11 "python.defaultInterpreterPath": "./bin/python", |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
12 "python.formatting.provider": "yapf", |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
13 "python.testing.pytestEnabled": true, |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
14 "python.testing.pytestPath": "./bin/pytest", |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
15 "pythonTestExplorer.testFramework": "pytest", |
2062 | 16 "toTypeScript.fixUnreachableCode": false, |
17 "toTypeScript.fixUnusedLabel": false, | |
2113 | 18 "toTypeScript.forgottenThisPropertyAccess": false, |
2203
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
19 "launch": { |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
20 |
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", |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
24 "type": "python", |
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, |
615046dfe45f
failing to get pytest debugging to work
drewp@bigasterisk.com
parents:
2196
diff
changeset
|
28 "python": "./bin/python" |
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", | |
34 "vitest.enable": true | |
2047 | 35 } |