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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2047
drewp@bigasterisk.com
parents:
diff changeset
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
b0e6fe19dc3b make rdfdb editable
drewp@bigasterisk.com
parents: 2203
diff changeset
6 "python.analysis.extraPaths": [
b0e6fe19dc3b make rdfdb editable
drewp@bigasterisk.com
parents: 2203
diff changeset
7 "__pypackages__/3.10/lib",
b0e6fe19dc3b make rdfdb editable
drewp@bigasterisk.com
parents: 2203
diff changeset
8 "/my/proj/rdfdb"
b0e6fe19dc3b make rdfdb editable
drewp@bigasterisk.com
parents: 2203
diff changeset
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
d991f7c3485a WIP rough porting of coffee to ts
drewp@bigasterisk.com
parents: 2056
diff changeset
16 "toTypeScript.fixUnreachableCode": false,
d991f7c3485a WIP rough porting of coffee to ts
drewp@bigasterisk.com
parents: 2056
diff changeset
17 "toTypeScript.fixUnusedLabel": false,
2113
drewp@bigasterisk.com
parents: 2062
diff changeset
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
8ebf79d6b957 add vitest
drewp@bigasterisk.com
parents: 2222
diff changeset
32 },
8ebf79d6b957 add vitest
drewp@bigasterisk.com
parents: 2222
diff changeset
33 "vitest.commandLine": "pnpm exec vitest",
8ebf79d6b957 add vitest
drewp@bigasterisk.com
parents: 2222
diff changeset
34 "vitest.enable": true
2047
drewp@bigasterisk.com
parents:
diff changeset
35 }