Skip to content
Snippets Groups Projects
Commit 0ea017d9 authored by Grzegorz Bizon's avatar Grzegorz Bizon
Browse files

Enable Style/WhileUntilDo rubocop style cop

See #17478
parent 43c35b0f
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -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:
Loading
Loading
Loading
Loading
@@ -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
Loading
Loading
Loading
Loading
@@ -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')
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment