config/enabled.yml in rubocop-0.23.0 vs config/enabled.yml in rubocop-0.24.0
- old
+ new
@@ -91,10 +91,14 @@
Style/ClassAndModuleChildren:
Description: 'Checks style of children classes and modules.'
Enabled: true
+Style/ClassCheck:
+ Description: 'Enforces consistent use of `Object#is_a?` or `Object#kind_of?`.'
+ Enabled: true
+
Style/ClassLength:
Description: 'Avoid classes longer than 100 lines of code.'
Enabled: true
Style/ClassMethods:
@@ -467,16 +471,24 @@
Description: >-
Checks that the left block brace has or doesn't have space
before it.
Enabled: true
+Style/SpaceBeforeComma:
+ Description: 'No spaces before commas.'
+ Enabled: true
+
Style/SpaceBeforeComment:
Description: >-
Checks for missing space between code and a comment on the
same line.
Enabled: true
+Style/SpaceBeforeSemicolon:
+ Description: 'No spaces before semicolons.'
+ Enabled: true
+
Style/SpaceInsideBlockBraces:
Description: >-
Checks that block braces have or don't have surrounding space.
For blocks taking parameters, checks that the left brace has
or doesn't have trailing space.
@@ -545,10 +557,14 @@
Style/UnneededCapitalW:
Description: 'Checks for %W when interpolation is not needed.'
Enabled: true
+Style/UnneededPercentQ:
+ Description: 'Checks for %q/%Q when single quotes or double quotes would do.'
+ Enabled: true
+
Style/UnneededPercentX:
Description: 'Checks for %x when `` would do.'
Enabled: true
Style/VariableInterpolation:
@@ -606,9 +622,13 @@
Description: 'Checks for condition placed in a confusing position relative to the keyword.'
Enabled: true
Lint/Debugger:
Description: 'Check for debugger calls.'
+ Enabled: true
+
+Lint/DefEndAlignment:
+ Description: 'Align ends corresponding to defs correctly.'
Enabled: true
Lint/DeprecatedClassMethods:
Description: 'Check for deprecated class method calls.'
Enabled: true