You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using ${workspaceFolder} or . notation in settings inside a .code-workspace file, For eg.
{
"folders": [
{
"path": "notpython" // not a python folder
},
{
"path": "python1" // the python folder that contains .pylintrc
},
{
"path": "python2" // the python folder does NOT contain .pylintrc
},
{
"path": "." // root workspace parent of both python1 and python2
}
],
"settings": {
"pylint.args": ["--rcfile=${workspaceFolder}/.pylintrc"],
"python.defaultInterpreterPath": "./.venv/bin/python"
}
}
We should resolve that setting differently for each workspace folder. For eg. the value of that setting will be <path_to_notpython>/.pylintrc for first workspace folder, whereas <path_to_python1>/.pylintrc for the second one. Same goes when using . instead of ${workspaceFolder}.
cc/ @karthiknadig I'm not sure if we should resolve . for all settings, but at least for python.defaultInterpreterPath setting this seems ok
The text was updated successfully, but these errors were encountered:
Thanks for the feature request! We are going to give the community 60 days from when this issue was created to provide 7 👍 upvotes on the opening comment to gauge general interest in this idea. If there's enough upvotes then we will consider this feature request in our future planning. If there's unfortunately not enough upvotes then we will close this issue.
Thank you for submitting your feature request and everyone who considered it! Unfortunately, this issue did not receive enough votes over the allotted time, and so we are closing the issue.
When using
${workspaceFolder}
or.
notation in settings inside a.code-workspace
file, For eg.We should resolve that setting differently for each workspace folder. For eg. the value of that setting will be
<path_to_notpython>/.pylintrc
for first workspace folder, whereas<path_to_python1>/.pylintrc
for the second one. Same goes when using.
instead of${workspaceFolder}
.cc/ @karthiknadig I'm not sure if we should resolve
.
for all settings, but at least forpython.defaultInterpreterPath
setting this seems okThe text was updated successfully, but these errors were encountered: