.rubocop.yml in dentaku-3.3.0 vs .rubocop.yml in dentaku-3.3.1
- old
+ new
@@ -1,7 +1,7 @@
AllCops:
- TargetRubyVersion: 2.4
+ TargetRubyVersion: 2.6
# RuboCop has a bunch of cops enabled by default. This setting tells RuboCop
# to ignore them, so only the ones explicitly set in this file are enabled.
DisabledByDefault: true
# Prefer &&/|| over and/or.
@@ -108,10 +108,10 @@
Style/UnneededPercentQ:
Enabled: true
# Align `end` with the matching keyword or starting expression except for
# assignments, where it should be aligned with the LHS.
-Lint/EndAlignment:
+Layout/EndAlignment:
Enabled: true
EnforcedStyleAlignWith: variable
# Use my_method(my_arg) not my_method( my_arg ) or my_method my_arg.
Lint/RequireParentheses: