I'm adding a new linter today. It's not a critical one (redundant nested calls like (+ 1 2 3 (+ 1 2 3)) which could be just (+ 1 2 3 1 2 3)
By default it was set to :warning but I don't want to break anyone's CI so I'm likely bumping it back to :off
But what I could also do is set a couple of these linters to :info such that people know they exist but they won't break CI. Would that be a good idea?