Switch PercentLiteralDelimiters to new default

Let's change that to the new rubocop default, which is also the
suggestion in the ruby style guide.

See https://github.com/bbatsov/ruby-style-guide#percent-literal-braces

closes #7466
This commit is contained in:
Benjamin Neff 2017-05-25 01:54:51 +02:00
parent 1751e21a87
commit 0d232f1d1b
No known key found for this signature in database
GPG key ID: 971464C3F1A90194

View file

@ -164,16 +164,6 @@ Lint/Debugger:
Style/NumericPredicate:
EnforcedStyle: comparison
# Old defaults from rubocop < 0.48.1
Style/PercentLiteralDelimiters:
PreferredDelimiters:
default: '()'
'%i': '()'
'%I': '()'
'%r': '{}'
'%w': '()'
'%W': '()'
# Reset some HoundCI changes back to Rubocop defaults
Style/DotPosition:
EnforcedStyle: leading