config/enabled.yml in rubocop-0.52.0 vs config/enabled.yml in rubocop-0.52.1

- old
+ new

@@ -1325,10 +1325,16 @@ Enabled: true Style/ClassAndModuleChildren: Description: 'Checks style of children classes and modules.' StyleGuide: '#namespace-definition' + # Moving from compact to nested children requires knowledge of whether the + # outer parent is a module or a class. Moving from nested to compact requires + # verification that the outer parent is defined elsewhere. Rubocop does not + # have the knowledge to perform either operation safely and thus requires + # manual oversight. + AutoCorrect: false Enabled: true Style/ClassCheck: Description: 'Enforces consistent use of `Object#is_a?` or `Object#kind_of?`.' Enabled: true @@ -1456,17 +1462,9 @@ Style/EvenOdd: Description: 'Favor the use of Integer#even? && Integer#odd?' StyleGuide: '#predicate-methods' Enabled: true - -Style/ExtendSelf: - Description: 'Checks for uses of extend self.' - StyleGuide: '#module-function' - Enabled: true - # Using `module_function` results in private visibility scope when the - # module is included, so auto-correction is unsafe. - Autocorrect: false Style/FlipFlop: Description: 'Checks for flip flops' StyleGuide: '#no-flip-flops' Enabled: true