From 0d232f1d1bebe616bc4c5d03ab6cb069b7f504e0 Mon Sep 17 00:00:00 2001 From: Benjamin Neff Date: Thu, 25 May 2017 01:54:51 +0200 Subject: [PATCH] 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 --- .rubocop.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.rubocop.yml b/.rubocop.yml index 36e1043e3..2ebb26cff 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -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