Commit 0ea017d9 authored by Grzegorz Bizon's avatar Grzegorz Bizon

Enable Style/WhileUntilDo rubocop style cop

See #17478
parent 43c35b0f
......@@ -705,7 +705,7 @@ Style/WhenThen:
# Checks for redundant do after while or until.
Style/WhileUntilDo:
Enabled: false
Enabled: true
# Favor modifier while/until usage when you have a single-line body.
Style/WhileUntilModifier:
......
......@@ -231,7 +231,7 @@ module Network
reserved.uniq!
space = space_default
while reserved.include?(space) do
while reserved.include?(space)
space += space_step
if space < space_base then
space_step *= -1
......
......@@ -56,7 +56,7 @@ module Gitlab
child_pattern = '[^/]*/?$' unless @opts[:recursive]
match_pattern = /^#{Regexp.escape(@path)}#{child_pattern}/
until gz.eof? do
until gz.eof?
begin
path = read_string(gz).force_encoding('UTF-8')
meta = read_string(gz).force_encoding('UTF-8')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment