Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sort the diagnostics by the line number
Before: plugin/configuration.py: 10:32 error Expected ":" Pyright 11:13 error Expected expression Pyright 12:14 error Expected expression Pyright 13:13 error Unexpected indentation Pyright 15:5 error Unindent not expected Pyright 21:1 error Unindent not expected Pyright 13:13 error "self" is not defined Pyright (reportUndefinedVariable) After: plugin/configuration.py: 10:32 error Expected ":" Pyright 11:13 error Expected expression Pyright 12:14 error Expected expression Pyright 13:13 error "self" is not defined Pyright (reportUndefinedVariable) 13:13 error Unexpected indentation Pyright 15:5 error Unindent not expected Pyright 21:1 error Unindent not expected Pyright
- Loading branch information