config/enabled.yml in rubocop-0.58.0 vs config/enabled.yml in rubocop-0.58.1

- old
+ new

@@ -759,12 +759,10 @@ Enabled: true Lint/UselessAccessModifier: Description: 'Checks for useless access modifiers.' Enabled: true - ContextCreatingMethods: [] - MethodCreatingMethods: [] Lint/UselessAssignment: Description: 'Checks for useless assignment to a local variable.' StyleGuide: '#underscore-unused-vars' Enabled: true @@ -1031,9 +1029,10 @@ Performance/RegexpMatch: Description: >- Use `match?` instead of `Regexp#match`, `String#match`, `Symbol#match`, `Regexp#===`, or `=~` when `MatchData` is not used. + Reference: 'https://github.com/JuanitoFatas/fast-ruby#regexp-vs-stringmatch-vs-string-vs-stringmatch-code-' Enabled: true Performance/ReverseEach: Description: 'Use `reverse_each` instead of `reverse.each`.' Reference: 'https://github.com/JuanitoFatas/fast-ruby#enumerablereverseeach-vs-enumerablereverse_each-code'