轨道中 Rubocop 的哈希参数周围的冗余大括号



在为这条线做了bundle exec rubocop -p之后,我冒犯了。

post = current_timeline.posts.build(post_params.merge({ avatars: params[:avatars] }))

罪名是:Style/BracesAroundHashParameters: Redundant curly braces around a hash parameter.

如何解决?我是红宝石中的鲁波科普的新手。

您可以简单地删除多余的大括号:

post = current_timeline.posts.build(post_params.merge(avatars: params[:avatars]))

传递给Hash文字方法的最后一个参数不需要它们。

相关内容

  • 没有找到相关文章

最新更新