Is your feature request related to a problem? Please describe.
There's a Lint/RescueException core cop which flags this code:
begin
rescue Exception => e
??
end
I think it makes sense to do the same for ActiveSupport's Kernel.suppress(Exception).
Describe the solution you'd like
Add a new cop Rails/SuppressException to detect rescuing Exception class.
Describe alternatives you've considered
Adding support for custom methods in the Lint/RescueException itself?
Additional context
If that makes sense, I'd like to implement it.