feat: added basic picropython

This commit is contained in:
Elias Renman
2023-05-21 17:51:55 +02:00
parent a3e32e76c1
commit a9a1915a5e
8 changed files with 76 additions and 0 deletions

16
pico-w/.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,16 @@
{
"python.linting.enabled": true,
"python.languageServer": "Pylance",
"python.analysis.typeCheckingMode": "basic",
"picowgo.syncFolder": "",
"python.analysis.typeshedPaths": [
".vscode/Pico-W-Stub"
],
"python.analysis.extraPaths": [
".vscode/Pico-W-Stub/stubs"
],
"[python]": {
"editor.defaultFormatter": "ms-python.autopep8"
},
"python.formatting.provider": "none"
}