styler
styler copied to clipboard
Styler and lintr disagree on what happens after a linebreak
Styler auto-formats to:
if (TRUE ||
FALSE) {
TRUE
}
While linter prefers:
if (TRUE ||
FALSE) {
TRUE
}
I don't really have strong opinions on which of these should happen, I would just like my tools to not contradict each other. It makes CI a mess. paired issue https://github.com/r-lib/lintr/issues/2535