annotate .vscode/settings.json @ 2428:5f4c8705cf73

vscode
author drewp@bigasterisk.com
date Tue, 28 May 2024 15:32:48 -0700
parents 4b8f8fabeb2f
children
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 "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
b0e6fe19dc3b make rdfdb editable
drewp@bigasterisk.com
parents: 2203
diff changeset
5 "python.analysis.extraPaths": [
2424
4b8f8fabeb2f vscode settings
drewp@bigasterisk.com
parents: 2414
diff changeset
6 "/home/drewp/.local/share/pdm/venvs/light9-zxQNOBNq-3.11/lib/python3.11/site-packages",
2222
b0e6fe19dc3b make rdfdb editable
drewp@bigasterisk.com
parents: 2203
diff changeset
7 "/my/proj/rdfdb"
b0e6fe19dc3b make rdfdb editable
drewp@bigasterisk.com
parents: 2203
diff changeset
8 ],
2424
4b8f8fabeb2f vscode settings
drewp@bigasterisk.com
parents: 2414
diff changeset
9 "python.autoComplete.extraPaths": [
4b8f8fabeb2f vscode settings
drewp@bigasterisk.com
parents: 2414
diff changeset
10 "/home/drewp/.local/share/pdm/venvs/light9-zxQNOBNq-3.11/lib/python3.11/site-packages",
4b8f8fabeb2f vscode settings
drewp@bigasterisk.com
parents: 2414
diff changeset
11 "/my/proj/rdfdb"
4b8f8fabeb2f vscode settings
drewp@bigasterisk.com
parents: 2414
diff changeset
12 ],
4b8f8fabeb2f vscode settings
drewp@bigasterisk.com
parents: 2414
diff changeset
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
d991f7c3485a WIP rough porting of coffee to ts
drewp@bigasterisk.com
parents: 2056
diff changeset
17 "toTypeScript.fixUnreachableCode": false,
d991f7c3485a WIP rough porting of coffee to ts
drewp@bigasterisk.com
parents: 2056
diff changeset
18 "toTypeScript.fixUnusedLabel": false,
2113
drewp@bigasterisk.com
parents: 2062
diff changeset
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
4b8f8fabeb2f vscode settings
drewp@bigasterisk.com
parents: 2414
diff changeset
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
4b8f8fabeb2f vscode settings
drewp@bigasterisk.com
parents: 2414
diff changeset
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
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",
2414
6c61735514e9 try codeium
drewp@bigasterisk.com
parents: 2257
diff changeset
34 "vitest.enable": true,
6c61735514e9 try codeium
drewp@bigasterisk.com
parents: 2257
diff changeset
35 "tabnine.codeLensEnabled": false,
2424
4b8f8fabeb2f vscode settings
drewp@bigasterisk.com
parents: 2414
diff changeset
36 "codeium.enableSearch": true,
4b8f8fabeb2f vscode settings
drewp@bigasterisk.com
parents: 2414
diff changeset
37 "python.formatting.provider": "eeyore.yapf",
4b8f8fabeb2f vscode settings
drewp@bigasterisk.com
parents: 2414
diff changeset
38 "[python]": {
4b8f8fabeb2f vscode settings
drewp@bigasterisk.com
parents: 2414
diff changeset
39 "editor.formatOnSaveMode": "file",
4b8f8fabeb2f vscode settings
drewp@bigasterisk.com
parents: 2414
diff changeset
40 "editor.formatOnSave": true,
4b8f8fabeb2f vscode settings
drewp@bigasterisk.com
parents: 2414
diff changeset
41 "editor.defaultFormatter": "eeyore.yapf",
4b8f8fabeb2f vscode settings
drewp@bigasterisk.com
parents: 2414
diff changeset
42 "editor.formatOnType": false
4b8f8fabeb2f vscode settings
drewp@bigasterisk.com
parents: 2414
diff changeset
43 },
4b8f8fabeb2f vscode settings
drewp@bigasterisk.com
parents: 2414
diff changeset
44 "editor.defaultFormatter": "eeyore.yapf",
4b8f8fabeb2f vscode settings
drewp@bigasterisk.com
parents: 2414
diff changeset
45 "python.languageServer": "Pylance",
2428
drewp@bigasterisk.com
parents: 2424
diff changeset
46 "python.analysis.completeFunctionParens": false,
2424
4b8f8fabeb2f vscode settings
drewp@bigasterisk.com
parents: 2414
diff changeset
47 "python.analysis.typeCheckingMode": "standard"
4b8f8fabeb2f vscode settings
drewp@bigasterisk.com
parents: 2414
diff changeset
48 }