Add `Performance/MapCompact` cop by koic · Pull Request #229 · rubocop/rubocop-performance
Follow #211 (comment) This PR adds Performance/MapCompact cop In Ruby 2.7, Enumerable#filter_map has been added. This cop identifies places where map { ... }.compact can be replaced by filter_map. ...