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
Currently, if expect_lint_free() fails, the message is
Not lint free
Which, while correct, isn't very helpful and requires another lintr run to find out where the lints are.
Instead, we should show the first couple of lints in the message, e.g.
I noticed this behavior depends on the environment expect_lint_free() runs in. #1790 solves this problem by exposing a way to always use the "raw" formatting option.
Currently, if
expect_lint_free()
fails, the message isWhich, while correct, isn't very helpful and requires another lintr run to find out where the lints are.
Instead, we should show the first couple of lints in the message, e.g.
Compare
expect_equal(1:100, numeric())
:The text was updated successfully, but these errors were encountered: