を変更します。Rubocopの設定は、古いRubocopの設定を見ると
...
Style/AlignParameters:
Description: Align the parameters of a method call if they span more than one line.
StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-double-indent
Enabled: true
EnforcedStyle: with_first_parameter
SupportedStyles:
- with_first_parameter
- with_fixed_indentation
...
ようRubocopのサイトを見にdefault settings:
...
Style/AlignParameters:
Description: >-
Align the parameters of a method call if they span more
than one line.
StyleGuide: '#no-double-indent'
Enabled: true
...
は古いスタイルが廃止されているかどうかを確認しようとすると?非推奨しますか?まだ有効?
私がすることができますseeSupportedStyles
は、入手可能なものを2つのオプションがあります。最初の例でそれらを指定するのは、デフォルトの動作を再表示する方法だけか、その両方のオプションを選択するステートメントですか?
別の言い方をすれば、私のrubocop.ymlからStyle/AlignParameters
セクション(またはその一部)を削除すると、デフォルトの動作が期待されるのでしょうか、それともスキップされますか?
優秀、ありがとう!さらに2つの質問:すべての警官とその設定の網羅的なリストはどこですか?これらが更新されると、通知を受け続ける最良の方法は何ですか? – Meltemi