It may be useful for beginners if this is pointed out by lintr, since it may be more appropriate to rewrite `if(x == TRUE) {...}` as follows ```r if(x) {...} if(isTRUE(x)) {...} ```