LoginSignup
2
1

More than 3 years have passed since last update.

[RuboCop]警告を無効化する方法

Posted at

RuboCopに怒られすぎて嫌になってませんか?

「ここはしょうがないだろ!」と言いながらどうにか頑張って怒られないようにする経験が誰しもがあるかと思います。
そこで、警告を無効化するための方法を紹介します。
使いすぎてもRuboCopの意味がなくなるので注意ですが、使いどころを見極めて活用してみましょう!

無効化する方法

指定範囲の全ての警告を無効化したい場合


# rubocop:disable all

〜ここに処理を記述〜

# rubocop:enable all

指定範囲の特定の警告を無効化したい場合


# rubocop:disable Style/LineLength, Style/StringLiterals

〜ここに処理を記述〜

# rubocop:enable Style/LineLength, Style/StringLiterals

単一行の全ての警告を無効化したい場合


for x in (0..19) # rubocop:disable all

単一行の特定の警告を無効化したい場合


for x in (0..19) # rubocop:disable Style/AvoidFor
2
1
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
2
1