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