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
Alternatively, I think you could use linters: with_defaults(open_curly_linter = open_curly_linter(allow_single_line = TRUE), closed_curly_linter = closed_curly_linter(allow_single_line = TRUE))
This would allow you to use {{ some_columns }} and if (something) {this()} else {that()}
but would still catch other curly-brace-related lints. [Proposed but never used]
The
{{
operator (as alternative to!!
+enquo
) was introduced inrlang 0.4.0
(https://www.tidyverse.org/articles/2019/06/rlang-0-4-0/) and I've started using this new operator in my packages.But now
lintr
treats this as a lint and my PR builds are flooded withlintr-bot
comments:IndrajeetPatil/ggstatsplot#255 (comment)
Any way to make sure that this is not counted as a lint?
The text was updated successfully, but these errors were encountered: