Blank lines in source code

Keep blank lines at the beginning/end:


# a blank line before this expression
1 + 1
#> [1] 2

# blank lines before and after this expression
for (i in 1:10) {
}