Mercurial > code > home > repos > light9
comparison .vscode/settings.json @ 2424:4b8f8fabeb2f
vscode settings
author | drewp@bigasterisk.com |
---|---|
date | Thu, 23 May 2024 16:40:28 -0700 |
parents | 6c61735514e9 |
children | 5f4c8705cf73 |
comparison
equal
deleted
inserted
replaced
2423:4a5b37acd1f0 | 2424:4b8f8fabeb2f |
---|---|
1 { | 1 { |
2 "djlint.pythonPath": "./bin/python", | |
3 "python.analysis.autoFormatStrings": true, | 2 "python.analysis.autoFormatStrings": true, |
4 "python.analysis.diagnosticMode": "workspace", | 3 "python.analysis.diagnosticMode": "workspace", |
5 "python.analysis.enablePytestSupport": true, | 4 "python.analysis.enablePytestSupport": true, |
6 "python.analysis.extraPaths": [ | 5 "python.analysis.extraPaths": [ |
7 "__pypackages__/3.10/lib", | 6 "/home/drewp/.local/share/pdm/venvs/light9-zxQNOBNq-3.11/lib/python3.11/site-packages", |
8 "/my/proj/rdfdb" | 7 "/my/proj/rdfdb" |
9 ], | 8 ], |
10 "python.autoComplete.extraPaths": ["__pypackages__/3.10/lib"], | 9 "python.autoComplete.extraPaths": [ |
11 "python.defaultInterpreterPath": "./bin/python", | 10 "/home/drewp/.local/share/pdm/venvs/light9-zxQNOBNq-3.11/lib/python3.11/site-packages", |
12 "python.formatting.provider": "yapf", | 11 "/my/proj/rdfdb" |
12 ], | |
13 "python.defaultInterpreterPath": "/home/drewp/.local/share/pdm/venvs/light9-zxQNOBNq-3.11/bin/python", | |
13 "python.testing.pytestEnabled": true, | 14 "python.testing.pytestEnabled": true, |
14 "python.testing.pytestPath": "./bin/pytest", | 15 "python.testing.pytestPath": "./bin/pytest", |
15 "pythonTestExplorer.testFramework": "pytest", | 16 "pythonTestExplorer.testFramework": "pytest", |
16 "toTypeScript.fixUnreachableCode": false, | 17 "toTypeScript.fixUnreachableCode": false, |
17 "toTypeScript.fixUnusedLabel": false, | 18 "toTypeScript.fixUnusedLabel": false, |
18 "toTypeScript.forgottenThisPropertyAccess": false, | 19 "toTypeScript.forgottenThisPropertyAccess": false, |
19 "launch": { | 20 "launch": { |
20 | |
21 "configurations": [ | 21 "configurations": [ |
22 { | 22 { |
23 "name": "Python: File", | 23 "name": "Python: File", |
24 "type": "python", | 24 "type": "debugpy", |
25 "request": "launch", | 25 "request": "launch", |
26 "program": "${file}", | 26 "program": "${file}", |
27 "justMyCode": true, | 27 "justMyCode": true, |
28 "python": "./bin/python" | 28 "python": "/home/drewp/.local/share/pdm/venvs/light9-zxQNOBNq-3.11/bin/python" |
29 } | 29 } |
30 ], | 30 ], |
31 "compounds": [] | 31 "compounds": [] |
32 }, | 32 }, |
33 "vitest.commandLine": "pnpm exec vitest", | 33 "vitest.commandLine": "pnpm exec vitest", |
34 "vitest.enable": true, | 34 "vitest.enable": true, |
35 "tabnine.codeLensEnabled": false, | 35 "tabnine.codeLensEnabled": false, |
36 "codeium.enableSearch": true | 36 "codeium.enableSearch": true, |
37 "python.formatting.provider": "eeyore.yapf", | |
38 "[python]": { | |
39 "editor.formatOnSaveMode": "file", | |
40 "editor.formatOnSave": true, | |
41 "editor.defaultFormatter": "eeyore.yapf", | |
42 "editor.formatOnType": false | |
43 }, | |
44 "editor.defaultFormatter": "eeyore.yapf", | |
45 "python.languageServer": "Pylance", | |
46 "python.analysis.completeFunctionParens": true, | |
47 "python.analysis.typeCheckingMode": "standard" | |
37 } | 48 } |