Skip to content

Instantly share code, notes, and snippets.

@pandazx
Created February 19, 2018 00:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pandazx/91dc3df575a191c99f1d90b6fe4f0375 to your computer and use it in GitHub Desktop.
Save pandazx/91dc3df575a191c99f1d90b6fe4f0375 to your computer and use it in GitHub Desktop.
Ruby構文の静的チェックツールRubocopの設定ファイル
# 1メソッド100行以下
Metrics/MethodLength:
Max: 100
# コメントに日本語許可
Style/AsciiComments:
Enabled: false
# メソッドの戻り値にreturn許可
Style/RedundantReturn:
Enabled: false
# 1行の長さは100文字以下
Metrics/LineLength:
Max: 100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment