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?

あまりruby詳しくないのでRuboCopでrubyぽく直してもらっています。

mruby on YABMの開発環境はFreeBSDのjail(BastilleBSD)にあり、RuboCopはFreeBSDのpkgでインストールしました。

いくつか引っかかったので、以下のような.rubocop.ymlを設定しています。

AllCops:
    NewCops: enable

Style/FrozenStringLiteralComment:
  Enabled: false
Style/MutableConstant:
  Enabled: false
Style/ZeroLengthPredicate:
  Enabled: false
Style/NumericPredicate:
  Enabled: false
Naming/ConstantName:
  Enabled: false
MethodLength:
  CountComments: true
  Max: 25

なぜこう設定したのかは忘れてしまいました。デフォルトだとコンパイルが通らなくなるものがあったような気がします。

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?