Closed as not planned
Closed as not planned
Description
Given a .code-workspace
file like this:
{
"folders": [
{
"path": "root1",
"name": "name1"
},
{
"path": "root2",
"name": "name2"
}
],
"settings": {
"python.analysis.include": ["${workspaceFolder:invalid_name}/**"]
}
}
VS Code could show a diagnostic on workspaceFolder:invalid_name
. It's easy to make a typo here and be confused about why it's not working as expected.
Originally filed as microsoft/pylance-release#6146, but this seems like it could be generally useful (not Pylance-specific).