Currently, `Performance/StringInclude` recognizes `=~` but not `!~`: ```ruby str =~ /foo/ # cop recommends str.include?('foo') ✔️ str !~ /foo/ # cop ignores 😔 ``` Ideally, it would recommend `!str.include?('foo')`