Enable the Lint/ParenthesesAsGroupedExpression cop
This commit is contained in:
parent
186e362701
commit
d473119f9d
2 changed files with 4 additions and 2 deletions
|
@ -394,7 +394,9 @@ Lint/OrderedMagicComments:
|
|||
Enabled: true
|
||||
|
||||
Lint/ParenthesesAsGroupedExpression:
|
||||
Enabled: false
|
||||
Enabled: true
|
||||
Exclude:
|
||||
- "spec/**/*"
|
||||
|
||||
Lint/PercentStringArray:
|
||||
Enabled: false
|
||||
|
|
|
@ -2,7 +2,7 @@ class AdminController < ApplicationController
|
|||
before_action :authenticate_administrateur!
|
||||
|
||||
def index
|
||||
redirect_to (admin_procedures_path)
|
||||
redirect_to(admin_procedures_path)
|
||||
end
|
||||
|
||||
def retrieve_procedure
|
||||
|
|
Loading…
Reference in a new issue