pyar6329
10/13/2014 - 10:27 AM

rubocop

rubocop

# 日本語でのコメントを許可
AsciiComments:
  Enabled: false

# モジュール名::クラス名の定義を許可
ClassAndModuleChildren:
  Enabled: false

# メソッド名のprefixに「set_」「get_」を許可
AccessorMethodName:
  Enabled: false

# 「and」「or」の使用を許可
AndOr:
  Enabled: false

# 行が長すぎる
LineLength:
  Enabled: false

# クラスの行数が多すぎる
ClassLength:
  Enabled: false

# メソッドの行数が多すぎる
MethodLength:
  Enabled: false

# 引数の数が多すぎる
ParameterLists:
  Max: 12

# ネストが深すぎる
BlockNesting:
  Max: 5

# ブロックコメントを許可
Style/BlockComments:
  Enabled: false