Skip to content

Also adding curly braces to expressions other than conditional statements #286

@lorenzwalthert

Description

@lorenzwalthert

Since we change

if (TRUE)
  return(call(a))

Into

if (TRUE) {
  return(call(a))
}

We should probably also change

while (FALSE)
  xyz(v)

Into

while (FALSE) {
  xyz(v)
}

Reference: #279 (comment)

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions