1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-19 13:54:25 +01:00

BracesAroundHashParameters: context_dependent

This commit is contained in:
Sylvain 2019-01-31 17:22:23 +01:00
parent 7f59b2eedb
commit c983b3cdc3
2 changed files with 4 additions and 4 deletions

View File

@ -11,7 +11,7 @@ Metrics/AbcSize:
Metrics/ClassLength:
Max: 200
Style/BracesAroundHashParameters:
EnforcedStyle: braces
EnforcedStyle: context_dependent
Style/RegexpLiteral:
EnforcedStyle: slashes
Style/EmptyElse:

View File

@ -20,9 +20,9 @@ module OmniAuth::Strategies
option :client_options,
{ site: active_provider.providable.base_url,
authorize_url: active_provider.providable.authorization_endpoint,
token_url: active_provider.providable.token_endpoint }
site: active_provider.providable.base_url,
authorize_url: active_provider.providable.authorization_endpoint,
token_url: active_provider.providable.token_endpoint
uid { parsed_info['user.uid'.to_sym] }