config/.rubocop.yml in fablicop-0.3.3 vs config/.rubocop.yml in fablicop-0.3.4

- old
+ new

@@ -70,11 +70,11 @@ # a, # b # ) # foo(a, # b) -Style/MultilineMethodCallBraceLayout: +Layout/MultilineMethodCallBraceLayout: Enabled: false # メソッド指定の多様性を許可 # while a # .b # something @@ -88,18 +88,18 @@ # .c # while a # .b # something # end -Style/MultilineMethodCallIndentation: +Layout/MultilineMethodCallIndentation: Enabled: false # aaa(bbb( # ccc # )) # 的なのができないのは不便すぎるのでdisable -Style/FirstParameterIndentation: +Layout/FirstParameterIndentation: Enabled: false # 候補が多いときはcondみたいに使いたい Style/EmptyCaseCondition: Enabled: false @@ -115,9 +115,21 @@ Style/MethodCallWithoutArgsParentheses: Enabled: false Style/DefWithParentheses: + Enabled: false + +# 以下の両方を許容 +# aaa. +# bb(). +# cc() +# aaa +# .bb() +# .cc() +# 前者は途中にコメントをはさむことができて実用上圧倒的に便利. +# 後者はデフォルトでrubocopがおすすめしてるやつ +Layout/DotPosition: Enabled: false ##################### Layout ################################## # 引数前のスペースは複数許可 Layout/SpaceBeforeFirstArg: