annotate .vscode/settings.json @ 2196:5ee5e17a3fd3

help vscode pytest runner work with pdm
author drewp@bigasterisk.com
date Sun, 21 May 2023 17:00:25 -0700
parents b27a3a8f9ecb
children 615046dfe45f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2047
drewp@bigasterisk.com
parents:
diff changeset
1 {
2143
b27a3a8f9ecb it's 2023
drewp@bigasterisk.com
parents: 2113
diff changeset
2 "python.autoComplete.extraPaths": ["__pypackages__/3.10/lib"],
b27a3a8f9ecb it's 2023
drewp@bigasterisk.com
parents: 2113
diff changeset
3 "python.analysis.extraPaths": ["__pypackages__/3.10/lib"],
2062
d991f7c3485a WIP rough porting of coffee to ts
drewp@bigasterisk.com
parents: 2056
diff changeset
4 "python.analysis.diagnosticMode": "workspace",
d991f7c3485a WIP rough porting of coffee to ts
drewp@bigasterisk.com
parents: 2056
diff changeset
5 "cmake.configureOnOpen": false,
d991f7c3485a WIP rough porting of coffee to ts
drewp@bigasterisk.com
parents: 2056
diff changeset
6 "toTypeScript.fixUnreachableCode": false,
d991f7c3485a WIP rough porting of coffee to ts
drewp@bigasterisk.com
parents: 2056
diff changeset
7 "toTypeScript.fixUnusedLabel": false,
2113
drewp@bigasterisk.com
parents: 2062
diff changeset
8 "toTypeScript.forgottenThisPropertyAccess": false,
2196
5ee5e17a3fd3 help vscode pytest runner work with pdm
drewp@bigasterisk.com
parents: 2143
diff changeset
9 "python.formatting.provider": "yapf",
5ee5e17a3fd3 help vscode pytest runner work with pdm
drewp@bigasterisk.com
parents: 2143
diff changeset
10 "python.testing.pytestEnabled": true,
5ee5e17a3fd3 help vscode pytest runner work with pdm
drewp@bigasterisk.com
parents: 2143
diff changeset
11 "python.testing.pytestPath": "./bin/pytest",
5ee5e17a3fd3 help vscode pytest runner work with pdm
drewp@bigasterisk.com
parents: 2143
diff changeset
12 "python.analysis.enablePytestSupport": true
2047
drewp@bigasterisk.com
parents:
diff changeset
13 }