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
|
Enabled: true
|
||||||
|
|
||||||
Lint/ParenthesesAsGroupedExpression:
|
Lint/ParenthesesAsGroupedExpression:
|
||||||
Enabled: false
|
Enabled: true
|
||||||
|
Exclude:
|
||||||
|
- "spec/**/*"
|
||||||
|
|
||||||
Lint/PercentStringArray:
|
Lint/PercentStringArray:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
|
@ -2,7 +2,7 @@ class AdminController < ApplicationController
|
||||||
before_action :authenticate_administrateur!
|
before_action :authenticate_administrateur!
|
||||||
|
|
||||||
def index
|
def index
|
||||||
redirect_to (admin_procedures_path)
|
redirect_to(admin_procedures_path)
|
||||||
end
|
end
|
||||||
|
|
||||||
def retrieve_procedure
|
def retrieve_procedure
|
||||||
|
|
Loading…
Reference in a new issue