After https://github.com/rubocop/rubocop/pull/13729 the `Style/RedundantCondition` is doing corrections that I don't believe are safe. One example from the Rails codebase: ```ruby def save(**) # :nodoc: - Suppressor.registry[self.class.name] ? true : super + Suppressor.registry[self.class.name] || super end ``` This change the code from returning `true` to return anything that is "thruthy", which in some case could be a problem.