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
Using VS Code diagnostics API it is possible to display static analysis results in VS Code natively.
I think that it would be cool to use this API to display diagnostics directly in VS Code (for example from duplicate detector).
Of course, due to current "duplicate detector" implementation limitations, showing such diagnostics in exact line would be impossible as we don't know in which line the duplicate occurred, but it would still be useful to at least know that such duplicates exist in opened file.
The text was updated successfully, but these errors were encountered:
This should not be too complicated, and indeed already having the file could be the first step to have the position in file (that we may find using some regexes from error msg )
Using VS Code diagnostics API it is possible to display static analysis results in VS Code natively.
I think that it would be cool to use this API to display diagnostics directly in VS Code (for example from duplicate detector).
Of course, due to current "duplicate detector" implementation limitations, showing such diagnostics in exact line would be impossible as we don't know in which line the duplicate occurred, but it would still be useful to at least know that such duplicates exist in opened file.
The text was updated successfully, but these errors were encountered: