# will produce lints
lint(
text = "c( TRUE, FALSE )",
linters = spaces_inside_linter()
)
lint(
text = "x[ 1L ]",
linters = spaces_inside_linter()
)
# okay
lint(
text = "c(TRUE, FALSE)",
linters = spaces_inside_linter()
)
lint(
text = "x[1L]",
linters = spaces_inside_linter()
)
Run the code above in your browser using DataLab