We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Line breaks should not be forced after the opening brace of a function call if the call follows a structure like
map(x, c, furher_arg = 3, another_arg = 2:4 )
Reference: tidyverse/style#39
Hence, when modifying line breaks after (, one has to check the structure and only break the line before the first named argument. More concretely,
(
The text was updated successfully, but these errors were encountered:
Not super urgent since line breaks after opening brace for function calls is only effective with strict = TRUE (#198).
strict = TRUE
Sorry, something went wrong.
It sees to me that we probably underestimated the priority of this issue in the light of tidyverse/tidyr#393
No branches or pull requests
Line breaks should not be forced after the opening brace of a function call if the call follows a structure like
Reference: tidyverse/style#39
Hence, when modifying line breaks after
(
, one has to check the structure and only break the line before the first named argument.More concretely,
The text was updated successfully, but these errors were encountered: