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
Would it be possible to gain a parameter in the implicit_assignment_linter to allow for implicit printing? At present, I see no way to disable this, e.g
lintr::lint(
text="(a <- 1)",
linters=lintr::implicit_assignment_linter()
)
#> <text>:1:2: warning: [implicit_assignment_linter] Call print() explicitly instead of relying on implicit printing behavior via '('.#> (a <- 1)#> ^~~~~~lintr::lint(
text="(a <- 1)",
linters=lintr::implicit_assignment_linter(except="`(`")
)
#> <text>:1:2: warning: [implicit_assignment_linter] Call print() explicitly instead of relying on implicit printing behavior via '('.#> (a <- 1)#> ^~~~~~