Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Neff <benjamin@coding4coffee.ch>2017-05-25 02:54:51 +0300
committerBenjamin Neff <benjamin@coding4coffee.ch>2017-06-30 03:13:31 +0300
commit0d232f1d1bebe616bc4c5d03ab6cb069b7f504e0 (patch)
tree2a31b86a0c124736b238ac2fab80f422ea65c4f8 /.rubocop.yml
parent1751e21a87c1a4c7bcd5884ebac141d97a088052 (diff)
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
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml10
1 files changed, 0 insertions, 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