0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Style/BracesAroundHashParametersの解消

Posted at

#概要

RuboCopのStyle/BracesAroundHashParametersでハマったのでメモ。

#内容

以下の様に書いていたら警告が出た。

config.add_notifier :slack, {
  webhook_url: 'url',
  channel: '#エラー通知'
}

原因は、余計な{...}がついていることなのだが、単純にカッコを消しても警告が消えなかった。

#解決方法

結論から言うと以下の様に書けば警告は消える。

config.add_notifier :slack, webhook_url: 'url', channel: '#エラー通知'

これはRuby文法では、最後の引数がハッシュの場合は{...}を省略できるからと言うもの。
単純に消してうまくいかなかったのは、1行で書けと警告が出ていたから。
詳細は参考文献を参照。

以上

#参考文献
Rails初心者が躓くRuby文法
RuboCop | Style/BracesAroundHashParameters EnforcedStyle

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?