Skip to content
Snippets Groups Projects
Commit ba0d27fe authored by Douwe Maan's avatar Douwe Maan
Browse files

Update rubocop and rubocop-rspec and regenerate .rubocop_todo.yml

parent ec5a74ec
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -630,10 +630,6 @@ Lint/EndInMethod:
Lint/EnsureReturn:
Enabled: true
 
# The use of eval represents a serious security risk.
Lint/Eval:
Enabled: true
# Catches floating-point literals too large or small for Ruby to represent.
Lint/FloatOutOfRange:
Enabled: true
Loading
Loading
@@ -810,6 +806,10 @@ Performance/TimesMap:
Security/JSONLoad:
Enabled: true
 
# This cop checks for the use of *Kernel#eval*.
Security/Eval:
Enabled: true
# Rails #######################################################################
 
# Enables Rails cops.
Loading
Loading
# This configuration was generated by
# `rubocop --auto-gen-config --exclude-limit 0`
# on 2017-02-22 12:40:11 -0600 using RuboCop version 0.47.1.
# on 2017-02-22 13:02:35 -0600 using RuboCop version 0.47.1.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
Loading
Loading
@@ -105,10 +105,6 @@ Style/FormatString:
Style/GuardClause:
Enabled: false
 
# Offense count: 2
Style/IdenticalConditionalBranches:
Enabled: false
# Offense count: 14
Style/IfInsideElse:
Enabled: false
Loading
Loading
Loading
Loading
@@ -29,12 +29,9 @@ module Gitlab
def save(provider = 'OAuth')
unauthorized_to_create unless gl_user
 
if needs_blocking?
gl_user.save!
gl_user.block
else
gl_user.save!
end
gl_user.save!
gl_user.block if needs_blocking?
 
log.info "(#{provider}) saving user #{auth_hash.email} from login with extern_uid => #{auth_hash.uid}"
gl_user
Loading
Loading
Loading
Loading
@@ -18,7 +18,7 @@ def Notify.deliver_later
self
end
eos
eval(code) # rubocop:disable Lint/Eval
eval(code) # rubocop:disable Security/Eval
end
end
end
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