Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prefer computed python venv path #1263

Merged
merged 21 commits into from
Sep 23, 2024
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update array to be rendered in settings ui
  • Loading branch information
brianignacio5 committed Sep 19, 2024
commit 11d92eba168349d742ed29086f116c50962ffa29
35 changes: 28 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,10 @@
"board/esp32-wrover.cfg"
],
"description": "%param.openOcdConfigFilesList%",
"scope": "resource"
"scope": "resource",
"items": {
"type": "string"
}
},
"idf.adapterTargetName": {
"type": "string",
Expand Down Expand Up @@ -571,19 +574,28 @@
"type": "array",
"default": [],
"description": "%param.cmakeCompilerArgs%",
"scope": "resource"
"scope": "resource",
"items": {
"type": "string"
}
},
"idf.sdkconfigDefaults": {
"type": "array",
"default": [],
"description": "%param.sdkconfigDefaults%",
"scope": "resource"
"scope": "resource",
"items": {
"type": "string"
}
},
"idf.ninjaArgs": {
"type": "array",
"default": [],
"description": "%param.ninjaArgs%",
"scope": "resource"
"scope": "resource",
"items": {
"type": "string"
}
},
"idf.customAdapterTargetName": {
"type": "string",
Expand Down Expand Up @@ -634,7 +646,10 @@
"trace.wait4halt": {
"type": "number",
"default": 0,
"enum": [0, 1],
"enum": [
0,
1
],
"scope": "resource",
"description": "%trace.wait4halt.description%"
},
Expand Down Expand Up @@ -849,7 +864,10 @@
"type": "array",
"default": [],
"description": "%param.openOcdLaunchArgs%",
"scope": "resource"
"scope": "resource",
"items": {
"type": "string"
}
},
"idf.preBuildTask": {
"type": "string",
Expand Down Expand Up @@ -939,7 +957,10 @@
"type": "array",
"description": "%param.customTerminalExecutableArgs.title%",
"scope": "resource",
"default": []
"default": [],
"items": {
"type": "string"
}
},
"idf.sdkconfigFilePath": {
"type": "string",
Expand Down