annotate .vscode/settings.json @ 2203:615046dfe45f

failing to get pytest debugging to work
author drewp@bigasterisk.com
date Mon, 22 May 2023 01:03:18 -0700
parents 5ee5e17a3fd3
children b0e6fe19dc3b
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,
2143
b27a3a8f9ecb it's 2023
drewp@bigasterisk.com
parents: 2113
diff changeset
6 "python.analysis.extraPaths": ["__pypackages__/3.10/lib"],
2203
615046dfe45f failing to get pytest debugging to work
drewp@bigasterisk.com
parents: 2196
diff changeset
7 "python.autoComplete.extraPaths": ["__pypackages__/3.10/lib"],
615046dfe45f failing to get pytest debugging to work
drewp@bigasterisk.com
parents: 2196
diff changeset
8 "python.defaultInterpreterPath": "./bin/python",
615046dfe45f failing to get pytest debugging to work
drewp@bigasterisk.com
parents: 2196
diff changeset
9 "python.formatting.provider": "yapf",
615046dfe45f failing to get pytest debugging to work
drewp@bigasterisk.com
parents: 2196
diff changeset
10 "python.testing.pytestEnabled": true,
615046dfe45f failing to get pytest debugging to work
drewp@bigasterisk.com
parents: 2196
diff changeset
11 "python.testing.pytestPath": "./bin/pytest",
615046dfe45f failing to get pytest debugging to work
drewp@bigasterisk.com
parents: 2196
diff changeset
12 "pythonTestExplorer.testFramework": "pytest",
2062
d991f7c3485a WIP rough porting of coffee to ts
drewp@bigasterisk.com
parents: 2056
diff changeset
13 "toTypeScript.fixUnreachableCode": false,
d991f7c3485a WIP rough porting of coffee to ts
drewp@bigasterisk.com
parents: 2056
diff changeset
14 "toTypeScript.fixUnusedLabel": false,
2113
drewp@bigasterisk.com
parents: 2062
diff changeset
15 "toTypeScript.forgottenThisPropertyAccess": false,
2203
615046dfe45f failing to get pytest debugging to work
drewp@bigasterisk.com
parents: 2196
diff changeset
16 "launch": {
615046dfe45f failing to get pytest debugging to work
drewp@bigasterisk.com
parents: 2196
diff changeset
17
615046dfe45f failing to get pytest debugging to work
drewp@bigasterisk.com
parents: 2196
diff changeset
18 "configurations": [
615046dfe45f failing to get pytest debugging to work
drewp@bigasterisk.com
parents: 2196
diff changeset
19 {
615046dfe45f failing to get pytest debugging to work
drewp@bigasterisk.com
parents: 2196
diff changeset
20 "name": "Python: File",
615046dfe45f failing to get pytest debugging to work
drewp@bigasterisk.com
parents: 2196
diff changeset
21 "type": "python",
615046dfe45f failing to get pytest debugging to work
drewp@bigasterisk.com
parents: 2196
diff changeset
22 "request": "launch",
615046dfe45f failing to get pytest debugging to work
drewp@bigasterisk.com
parents: 2196
diff changeset
23 "program": "${file}",
615046dfe45f failing to get pytest debugging to work
drewp@bigasterisk.com
parents: 2196
diff changeset
24 "justMyCode": true,
615046dfe45f failing to get pytest debugging to work
drewp@bigasterisk.com
parents: 2196
diff changeset
25 "python": "./bin/python"
615046dfe45f failing to get pytest debugging to work
drewp@bigasterisk.com
parents: 2196
diff changeset
26 }
615046dfe45f failing to get pytest debugging to work
drewp@bigasterisk.com
parents: 2196
diff changeset
27 ],
615046dfe45f failing to get pytest debugging to work
drewp@bigasterisk.com
parents: 2196
diff changeset
28 "compounds": []
615046dfe45f failing to get pytest debugging to work
drewp@bigasterisk.com
parents: 2196
diff changeset
29 }
2047
drewp@bigasterisk.com
parents:
diff changeset
30 }