-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Duplicated messages for nim check #4183
Comments
And maybe sorting messages for column also -- would make use of nimsuggest easier: import strutils a.seten+++++++++++++(100) if a.len > 0: $ nim check test.nim |
But maybe nimsuggest should sent the erros in a more structured format like JSON? |
That's planned but note that valid nimsuggest output has tabs and the usual error message never have tabs, so it's already quite easy to filter proper nimsuggest output. |
The first example now gives no duplications anymore:
The second example:
|
$ nim check test.nim
Hint: system [Processing]
Hint: test [Processing]
Hint: strutils [Processing]
Hint: parseutils [Processing]
test.nim(9, 1) Error: invalid indentation
test.nim(9, 1) Error: invalid indentation
test.nim(9, 1) Error: ')' expected
Maybe we can filter the check messages for duplicates?
The text was updated successfully, but these errors were encountered: