config/default.yml in rubocop-0.48.0 vs config/default.yml in rubocop-0.48.1
- old
+ new
@@ -900,10 +900,11 @@
# offenses for `!x.nil?` and does no changes that might change behavior.
IncludeSemanticChanges: false
Style/NumericLiterals:
MinDigits: 5
+ Strict: false
Style/NumericLiteralPrefix:
EnforcedOctalStyle: zero_with_o
SupportedOctalStyles:
- zero_with_o
@@ -936,10 +937,14 @@
# Specify the default preferred delimiter for all types with the 'default' key
# Override individual delimiters (even with default specified) by specifying
# an individual key
PreferredDelimiters:
default: ()
+ '%i': '[]'
+ '%I': '[]'
'%r': '{}'
+ '%w': '[]'
+ '%W': '[]'
Style/PercentQLiterals:
EnforcedStyle: lower_case_q
SupportedStyles:
- lower_case_q # Use `%q` when possible, `%Q` when necessary