We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
メソッドの引数のハッシュのインデントがなぜか変化しないので、設定なしの環境で試してみたところ、 Layout/AlignHash で auto correct されるとわかったので、設定を確認したところ、 EnforcedLastArgumentHashStyle: always_ignore だけ設定していたのですが、なぜかインデントに影響していました。
Layout/AlignHash
EnforcedLastArgumentHashStyle: always_ignore
https://www.rubydoc.info/gems/rubocop/RuboCop/Cop/Layout/AlignHash の説明をみても、最後のハッシュを {} でくくるかどうかだけに影響しているように見えるのですが、インデントの変更はしてほしい場合はどうすればいいのでしょうか?
{}
% cat .rubocop.yml Layout/AlignHash: EnforcedLastArgumentHashStyle: always_ignore % cat create.rb # frozen_string_literal: true FactoryBot.create :user, name: 'name', email: '[email protected]' % rubocop -a create.rb Inspecting 1 file . 1 file inspected, no offenses detected % rm .rubocop.yml % rubocop -a create.rb Inspecting 1 file C Offenses: create.rb:4:3: C: [Corrected] Layout/AlignHash: Align the elements of a hash literal if they span more than one line. email: '[email protected]' ^^^^^^^^^^^^^^^^^^^^^^^^^ 1 file inspected, 1 offense detected, 1 offense corrected % cat create.rb # frozen_string_literal: true FactoryBot.create :user, name: 'name', email: '[email protected]' % rubocop -V 0.72.0 (using Parser 2.6.3.0, running on ruby 2.6.3 x86_64-darwin18)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
メソッドの引数のハッシュのインデントがなぜか変化しないので、設定なしの環境で試してみたところ、
Layout/AlignHash
で auto correct されるとわかったので、設定を確認したところ、EnforcedLastArgumentHashStyle: always_ignore
だけ設定していたのですが、なぜかインデントに影響していました。https://www.rubydoc.info/gems/rubocop/RuboCop/Cop/Layout/AlignHash の説明をみても、最後のハッシュを
{}
でくくるかどうかだけに影響しているように見えるのですが、インデントの変更はしてほしい場合はどうすればいいのでしょうか?The text was updated successfully, but these errors were encountered: