You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like there are several cops which implement various approaches to recommending:
render"path/to/template",{ ... options ... }
Why are these cops separate? Could they be unified?
For example, one cop replaces render action: :edit => render action: "edit", but another replaces render action: "edit" => render "edit". So, could we jump right from render action: :edit" => render "edit"?
The text was updated successfully, but these errors were encountered:
It looks like there are several cops which implement various approaches to recommending:
Why are these cops separate? Could they be unified?
For example, one cop replaces
render action: :edit
=>render action: "edit"
, but another replacesrender action: "edit"
=>render "edit"
. So, could we jump right fromrender action: :edit"
=>render "edit"
?The text was updated successfully, but these errors were encountered: