My employer's R convention/styleguide specifies that closing parentheses and braces should align with the opening line:
function_1 <- function(...) {
list(...)
}
RStudio Server indents by default:
function_1 <- function(...) {
list(...)
}
Is there any way to change this?