-
Notifications
You must be signed in to change notification settings - Fork 73
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
Standalone should not be styled #1135
Conversation
This is how benchmark results would change (along with a 95% confidence interval in relative change) if acd0b46 is merged into main:
Further explanation regarding interpretation and methodology can be found in the documentation. |
@@ -69,7 +69,7 @@ style_pkg <- function(pkg = ".", | |||
style = tidyverse_style, | |||
transformers = style(...), | |||
filetype = c("R", "Rprofile", "Rmd", "Rmarkdown", "Rnw", "Qmd"), | |||
exclude_files = c("R/RcppExports.R", "R/cpp11.R"), | |||
exclude_files = c("R/RcppExports.R", "R/cpp11.R", "R/import-standalone.+R"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
exclude_files = c("R/RcppExports.R", "R/cpp11.R", "R/import-standalone.+R"), | |
exclude_files = c("R/RcppExports\\.R", "R/cpp11\\.R", "R/import-standalone.+\\.R"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
escape dots for regex.
Thanks @olivroy. I will review later. |
Closed in favor of #1135. |
Follow up: Standalone should not be styled #1135
Closes #1134.