.rubocop.yml in multi_range-1.2.0 vs .rubocop.yml in multi_range-1.3.0
- old
+ new
@@ -175,12 +175,12 @@
Lint/UselessAssignment:
Description: 'Checks for useless assignment to a local variable.'
StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#underscore-unused-vars'
Enabled: true
-Lint/UselessComparison:
- Description: 'Checks for comparison of something with itself.'
+Lint/BinaryOperatorWithIdenticalOperands:
+ Description: 'This cop checks for places where binary operator has identical operands.'
Enabled: true
Lint/UselessElseWithoutRescue:
Description: 'Checks for useless `else` in `begin..end` without `rescue`.'
Enabled: true
@@ -1062,10 +1062,10 @@
Style/SymbolProc:
Description: 'Use symbols as procs instead of blocks when possible.'
Enabled: false # wants to support ruby 1.8
-Layout/Tab:
+Layout/IndentationStyle:
Description: 'No hard tabs.'
StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#spaces-indentation'
Enabled: true
Layout/TrailingEmptyLines: