Add new `Rails/AssertNot` cop by composerinteralia · Pull Request #5805 · rubocop/rubocop

Following the pattern of #5801, this cop imports a custom cop from rails/rails#32605. This cop checks for the use of assert !: # bad assert !foo # good assert_not foo As in #5801, since assert_not...