Fix extra blank line when adding rubocop-rails-omakase and brakeman (#50626)

This commit is contained in:
Akhil G Krishnan 2024-01-07 22:53:05 +05:30 committed by GitHub
parent c09f9635ca
commit 27fa04975d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -37,14 +37,14 @@ group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[ mri <%= bundler_windows_platforms %> ]
<%- unless options.skip_brakeman? -%>
# Static analysis for security vulnerabilities [https://brakemanscanner.org/]
gem "brakeman", require: false
<%- end -%>
<%- unless options.skip_rubocop? -%>
# Omakase Ruby styling [https://github.com/rails/rubocop-rails-omakase/]
gem "rubocop-rails-omakase", require: false
<%- end -%>
end
<% end -%>