lintr complains about line 5 of the file formatted by Air below, but I don't know why. ```r func <- function() { if ( isTRUE(TRUE) || (isTRUE(TRUE) && isTRUE(TRUE)) ) { NULL } } ``` Reprex: ``` r lintr::lint( text = r"( func <- function() { if ( isTRUE(TRUE) || (isTRUE(TRUE) && isTRUE(TRUE)) ) { NULL } })" ) #> <text>:6:8: style: [indentation_linter] Indentation should be 9 spaces but is 8 spaces. #> isTRUE(TRUE)) #> ^~ ``` <sup>Created on 2025-07-13 with [reprex v2.1.1](https://reprex.tidyverse.org)</sup>