Update rubocop and rubocop-rspec and regenerate .rubocop_todo.yml
This commit is contained in:
parent
ec5a74ecfa
commit
ba0d27fe94
4 changed files with 9 additions and 16 deletions
|
@ -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
|
||||
|
@ -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.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# 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
|
||||
|
@ -105,10 +105,6 @@ Style/FormatString:
|
|||
Style/GuardClause:
|
||||
Enabled: false
|
||||
|
||||
# Offense count: 2
|
||||
Style/IdenticalConditionalBranches:
|
||||
Enabled: false
|
||||
|
||||
# Offense count: 14
|
||||
Style/IfInsideElse:
|
||||
Enabled: false
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue