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
If multiple diagnostics exist for the same line, and at least one of the codes has a Code Action/Quick Fix available, this quick fix is shown for all codes on this line.
For example:
reimported, import-error and no-name-in-module do not have a corresponding code action. However, for all of them the quick fix Run organize imports is shown, which is registered as quick fix for ungrouped-importsonly.
This should be filed on VS Code. We return the Code Action with the diagnostic it applies to. It is up to VS Code to show the right one for a given problem.
If multiple diagnostics exist for the same line, and at least one of the codes has a Code Action/Quick Fix available, this quick fix is shown for all codes on this line.
For example:
reimported
,import-error
andno-name-in-module
do not have a corresponding code action. However, for all of them the quick fixRun organize imports
is shown, which is registered as quick fix forungrouped-imports
only.I stumbled across this when trying to imlement a solution for microsoft/vscode-pylint#205.
The text was updated successfully, but these errors were encountered: