Update rubocop todo and fix new warnings
This commit is contained in:
parent
0041375721
commit
8a9dbc94c8
4 changed files with 47 additions and 43 deletions
|
@ -1,6 +1,6 @@
|
||||||
# This configuration was generated by
|
# This configuration was generated by
|
||||||
# `rubocop --auto-gen-config`
|
# `rubocop --auto-gen-config`
|
||||||
# on 2021-06-29 17:25:37 UTC using RuboCop version 1.18.0.
|
# on 2021-09-14 19:29:59 UTC using RuboCop version 1.21.0.
|
||||||
# The point is for the user to remove these configuration records
|
# The point is for the user to remove these configuration records
|
||||||
# one by one as the offenses are removed from the code base.
|
# one by one as the offenses are removed from the code base.
|
||||||
# Note that changes in the inspected code, or installation of new
|
# Note that changes in the inspected code, or installation of new
|
||||||
|
@ -14,13 +14,26 @@ require:
|
||||||
- rubocop-rails
|
- rubocop-rails
|
||||||
- rubocop-rake
|
- rubocop-rake
|
||||||
|
|
||||||
# Offense count: 510
|
# Offense count: 524
|
||||||
# Cop supports --auto-correct.
|
# Cop supports --auto-correct.
|
||||||
# Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
|
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
|
||||||
# URISchemes: http, https
|
# URISchemes: http, https
|
||||||
Layout/LineLength:
|
Layout/LineLength:
|
||||||
Max: 270
|
Max: 270
|
||||||
|
|
||||||
|
# Offense count: 62
|
||||||
|
# Cop supports --auto-correct.
|
||||||
|
Lint/AmbiguousOperatorPrecedence:
|
||||||
|
Exclude:
|
||||||
|
- 'app/controllers/geocoder_controller.rb'
|
||||||
|
- 'app/models/user.rb'
|
||||||
|
- 'lib/bounding_box.rb'
|
||||||
|
- 'lib/osm.rb'
|
||||||
|
- 'lib/rich_text.rb'
|
||||||
|
- 'lib/short_link.rb'
|
||||||
|
- 'test/controllers/api/old_nodes_controller_test.rb'
|
||||||
|
- 'test/lib/short_link_test.rb'
|
||||||
|
|
||||||
# Offense count: 34
|
# Offense count: 34
|
||||||
# Configuration parameters: AllowSafeAssignment.
|
# Configuration parameters: AllowSafeAssignment.
|
||||||
Lint/AssignmentInCondition:
|
Lint/AssignmentInCondition:
|
||||||
|
@ -50,12 +63,12 @@ Lint/DuplicateBranch:
|
||||||
- 'app/helpers/browse_tags_helper.rb'
|
- 'app/helpers/browse_tags_helper.rb'
|
||||||
- 'lib/password_hash.rb'
|
- 'lib/password_hash.rb'
|
||||||
|
|
||||||
# Offense count: 631
|
# Offense count: 643
|
||||||
# Configuration parameters: IgnoredMethods, CountRepeatedAttributes.
|
# Configuration parameters: IgnoredMethods, CountRepeatedAttributes.
|
||||||
Metrics/AbcSize:
|
Metrics/AbcSize:
|
||||||
Max: 235
|
Max: 189
|
||||||
|
|
||||||
# Offense count: 68
|
# Offense count: 69
|
||||||
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
|
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
|
||||||
# IgnoredMethods: refine
|
# IgnoredMethods: refine
|
||||||
Metrics/BlockLength:
|
Metrics/BlockLength:
|
||||||
|
@ -69,14 +82,14 @@ Metrics/BlockNesting:
|
||||||
# Offense count: 25
|
# Offense count: 25
|
||||||
# Configuration parameters: CountComments, CountAsOne.
|
# Configuration parameters: CountComments, CountAsOne.
|
||||||
Metrics/ClassLength:
|
Metrics/ClassLength:
|
||||||
Max: 361
|
Max: 337
|
||||||
|
|
||||||
# Offense count: 56
|
# Offense count: 58
|
||||||
# Configuration parameters: IgnoredMethods.
|
# Configuration parameters: IgnoredMethods.
|
||||||
Metrics/CyclomaticComplexity:
|
Metrics/CyclomaticComplexity:
|
||||||
Max: 25
|
Max: 25
|
||||||
|
|
||||||
# Offense count: 703
|
# Offense count: 716
|
||||||
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
|
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
|
||||||
Metrics/MethodLength:
|
Metrics/MethodLength:
|
||||||
Max: 179
|
Max: 179
|
||||||
|
@ -86,37 +99,22 @@ Metrics/MethodLength:
|
||||||
Metrics/ParameterLists:
|
Metrics/ParameterLists:
|
||||||
Max: 6
|
Max: 6
|
||||||
|
|
||||||
# Offense count: 60
|
# Offense count: 62
|
||||||
# Configuration parameters: IgnoredMethods.
|
# Configuration parameters: IgnoredMethods.
|
||||||
Metrics/PerceivedComplexity:
|
Metrics/PerceivedComplexity:
|
||||||
Max: 26
|
Max: 26
|
||||||
|
|
||||||
# Offense count: 519
|
# Offense count: 528
|
||||||
Minitest/MultipleAssertions:
|
Minitest/MultipleAssertions:
|
||||||
Max: 88
|
Max: 54
|
||||||
|
|
||||||
# Offense count: 4
|
# Offense count: 3
|
||||||
Naming/AccessorMethodName:
|
Naming/AccessorMethodName:
|
||||||
Exclude:
|
Exclude:
|
||||||
- 'app/controllers/application_controller.rb'
|
- 'app/controllers/application_controller.rb'
|
||||||
- 'app/helpers/title_helper.rb'
|
- 'app/helpers/title_helper.rb'
|
||||||
- 'lib/osm.rb'
|
- 'lib/osm.rb'
|
||||||
|
|
||||||
# Offense count: 21
|
|
||||||
# Configuration parameters: CheckIdentifiers, CheckConstants, CheckVariables, CheckStrings, CheckSymbols, CheckComments, CheckFilepaths, FlaggedTerms.
|
|
||||||
Naming/InclusiveLanguage:
|
|
||||||
Exclude:
|
|
||||||
- 'app/controllers/sessions_controller.rb'
|
|
||||||
- 'app/controllers/users_controller.rb'
|
|
||||||
- 'app/helpers/browse_tags_helper.rb'
|
|
||||||
- 'app/views/api/capabilities/show.builder'
|
|
||||||
- 'app/views/confirmations/_resend_success_flash.html.erb'
|
|
||||||
- 'app/views/users/suspended.html.erb'
|
|
||||||
- 'config/environments/production.rb'
|
|
||||||
- 'config/initializers/canonical_rails.rb'
|
|
||||||
- 'config/initializers/config.rb'
|
|
||||||
- 'config/initializers/doorkeeper.rb'
|
|
||||||
|
|
||||||
# Offense count: 8
|
# Offense count: 8
|
||||||
# Configuration parameters: NamePrefix, ForbiddenPrefixes, AllowedMethods, MethodDefinitionMacros.
|
# Configuration parameters: NamePrefix, ForbiddenPrefixes, AllowedMethods, MethodDefinitionMacros.
|
||||||
# NamePrefix: is_, has_, have_
|
# NamePrefix: is_, has_, have_
|
||||||
|
@ -142,6 +140,12 @@ Rails/BulkChangeTable:
|
||||||
- 'db/migrate/20120208194454_add_domain_to_acl.rb'
|
- 'db/migrate/20120208194454_add_domain_to_acl.rb'
|
||||||
- 'db/migrate/20120404205604_add_user_and_description_to_redaction.rb'
|
- 'db/migrate/20120404205604_add_user_and_description_to_redaction.rb'
|
||||||
|
|
||||||
|
# Offense count: 43
|
||||||
|
# Cop supports --auto-correct.
|
||||||
|
Rails/ContentTag:
|
||||||
|
Exclude:
|
||||||
|
- 'test/lib/locale_test.rb'
|
||||||
|
|
||||||
# Offense count: 2
|
# Offense count: 2
|
||||||
# Configuration parameters: Include.
|
# Configuration parameters: Include.
|
||||||
# Include: app/models/**/*.rb
|
# Include: app/models/**/*.rb
|
||||||
|
@ -200,7 +204,7 @@ Rake/Desc:
|
||||||
- 'lib/tasks/subscribe_diary_authors.rake'
|
- 'lib/tasks/subscribe_diary_authors.rake'
|
||||||
- 'lib/tasks/subscribe_old_changesets.rake'
|
- 'lib/tasks/subscribe_old_changesets.rake'
|
||||||
|
|
||||||
# Offense count: 597
|
# Offense count: 602
|
||||||
# Cop supports --auto-correct.
|
# Cop supports --auto-correct.
|
||||||
# Configuration parameters: EnforcedStyle.
|
# Configuration parameters: EnforcedStyle.
|
||||||
# SupportedStyles: always, always_true, never
|
# SupportedStyles: always, always_true, never
|
||||||
|
|
|
@ -11,7 +11,7 @@ module OpenGraphHelper
|
||||||
}
|
}
|
||||||
|
|
||||||
safe_join(tags.map do |property, content|
|
safe_join(tags.map do |property, content|
|
||||||
tag(:meta, :property => property, :content => content)
|
tag.meta(:property => property, :content => content)
|
||||||
end, "\n")
|
end, "\n")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -25,7 +25,7 @@ module UserRolesHelper
|
||||||
end
|
end
|
||||||
|
|
||||||
if image
|
if image
|
||||||
svg_icon = tag("source", :srcset => image_path("#{image}.svg"), :type => "image/svg+xml")
|
svg_icon = tag.source(:srcset => image_path("#{image}.svg"), :type => "image/svg+xml")
|
||||||
png_icon = image_tag("#{image}.png", :srcset => image_path("#{image}.svg"), :size => "20x20", :border => 0, :alt => alt, :title => title)
|
png_icon = image_tag("#{image}.png", :srcset => image_path("#{image}.svg"), :size => "20x20", :border => 0, :alt => alt, :title => title)
|
||||||
icon = tag.picture(svg_icon + png_icon)
|
icon = tag.picture(svg_icon + png_icon)
|
||||||
icon = link_to(icon, url, :method => :post, :confirm => confirm) if url
|
icon = link_to(icon, url, :method => :post, :confirm => confirm) if url
|
||||||
|
|
|
@ -12,7 +12,7 @@ class UserRolesHelperTest < ActionView::TestCase
|
||||||
icon = role_icon(create(:moderator_user), "moderator")
|
icon = role_icon(create(:moderator_user), "moderator")
|
||||||
expected = <<~HTML.delete("\n")
|
expected = <<~HTML.delete("\n")
|
||||||
<picture>
|
<picture>
|
||||||
<source srcset="/images/roles/moderator.svg" type="image/svg+xml" />
|
<source srcset="/images/roles/moderator.svg" type="image/svg+xml">
|
||||||
<img srcset="/images/roles/moderator.svg" border="0" alt="This user is a moderator" title="This user is a moderator" src="/images/roles/moderator.png" width="20" height="20" />
|
<img srcset="/images/roles/moderator.svg" border="0" alt="This user is a moderator" title="This user is a moderator" src="/images/roles/moderator.png" width="20" height="20" />
|
||||||
</picture>
|
</picture>
|
||||||
HTML
|
HTML
|
||||||
|
@ -27,7 +27,7 @@ class UserRolesHelperTest < ActionView::TestCase
|
||||||
expected = <<~HTML.delete("\n")
|
expected = <<~HTML.delete("\n")
|
||||||
<a confirm="Are you sure you want to grant the role `moderator' to the user `#{user.display_name}'?" rel="nofollow" data-method="post" href="/user/#{ERB::Util.u(user.display_name)}/role/moderator/grant">
|
<a confirm="Are you sure you want to grant the role `moderator' to the user `#{user.display_name}'?" rel="nofollow" data-method="post" href="/user/#{ERB::Util.u(user.display_name)}/role/moderator/grant">
|
||||||
<picture>
|
<picture>
|
||||||
<source srcset="/images/roles/blank_moderator.svg" type="image/svg+xml" />
|
<source srcset="/images/roles/blank_moderator.svg" type="image/svg+xml">
|
||||||
<img srcset="/images/roles/blank_moderator.svg" border="0" alt="Grant moderator access" title="Grant moderator access" src="/images/roles/blank_moderator.png" width="20" height="20" />
|
<img srcset="/images/roles/blank_moderator.svg" border="0" alt="Grant moderator access" title="Grant moderator access" src="/images/roles/blank_moderator.png" width="20" height="20" />
|
||||||
</picture>
|
</picture>
|
||||||
</a>
|
</a>
|
||||||
|
@ -39,7 +39,7 @@ class UserRolesHelperTest < ActionView::TestCase
|
||||||
expected = <<~HTML.delete("\n")
|
expected = <<~HTML.delete("\n")
|
||||||
<a confirm="Are you sure you want to revoke the role `moderator' from the user `#{moderator_user.display_name}'?" rel="nofollow" data-method="post" href="/user/#{ERB::Util.u(moderator_user.display_name)}/role/moderator/revoke">
|
<a confirm="Are you sure you want to revoke the role `moderator' from the user `#{moderator_user.display_name}'?" rel="nofollow" data-method="post" href="/user/#{ERB::Util.u(moderator_user.display_name)}/role/moderator/revoke">
|
||||||
<picture>
|
<picture>
|
||||||
<source srcset="/images/roles/moderator.svg" type="image/svg+xml" />
|
<source srcset="/images/roles/moderator.svg" type="image/svg+xml">
|
||||||
<img srcset="/images/roles/moderator.svg" border="0" alt="Revoke moderator access" title="Revoke moderator access" src="/images/roles/moderator.png" width="20" height="20" />
|
<img srcset="/images/roles/moderator.svg" border="0" alt="Revoke moderator access" title="Revoke moderator access" src="/images/roles/moderator.png" width="20" height="20" />
|
||||||
</picture>
|
</picture>
|
||||||
</a>
|
</a>
|
||||||
|
@ -56,7 +56,7 @@ class UserRolesHelperTest < ActionView::TestCase
|
||||||
icons = role_icons(create(:moderator_user))
|
icons = role_icons(create(:moderator_user))
|
||||||
expected = <<~HTML.delete("\n")
|
expected = <<~HTML.delete("\n")
|
||||||
<picture>
|
<picture>
|
||||||
<source srcset="/images/roles/moderator.svg" type="image/svg+xml" />
|
<source srcset="/images/roles/moderator.svg" type="image/svg+xml">
|
||||||
<img srcset="/images/roles/moderator.svg" border="0" alt="This user is a moderator" title="This user is a moderator" src="/images/roles/moderator.png" width="20" height="20" />
|
<img srcset="/images/roles/moderator.svg" border="0" alt="This user is a moderator" title="This user is a moderator" src="/images/roles/moderator.png" width="20" height="20" />
|
||||||
</picture>
|
</picture>
|
||||||
HTML
|
HTML
|
||||||
|
@ -65,11 +65,11 @@ class UserRolesHelperTest < ActionView::TestCase
|
||||||
icons = role_icons(create(:super_user))
|
icons = role_icons(create(:super_user))
|
||||||
expected = <<~HTML.delete("\n")
|
expected = <<~HTML.delete("\n")
|
||||||
<picture>
|
<picture>
|
||||||
<source srcset="/images/roles/administrator.svg" type="image/svg+xml" />
|
<source srcset="/images/roles/administrator.svg" type="image/svg+xml">
|
||||||
<img srcset="/images/roles/administrator.svg" border="0" alt="This user is an administrator" title="This user is an administrator" src="/images/roles/administrator.png" width="20" height="20" />
|
<img srcset="/images/roles/administrator.svg" border="0" alt="This user is an administrator" title="This user is an administrator" src="/images/roles/administrator.png" width="20" height="20" />
|
||||||
</picture>
|
</picture>
|
||||||
<picture>
|
<picture>
|
||||||
<source srcset="/images/roles/moderator.svg" type="image/svg+xml" />
|
<source srcset="/images/roles/moderator.svg" type="image/svg+xml">
|
||||||
<img srcset="/images/roles/moderator.svg" border="0" alt="This user is a moderator" title="This user is a moderator" src="/images/roles/moderator.png" width="20" height="20" />
|
<img srcset="/images/roles/moderator.svg" border="0" alt="This user is a moderator" title="This user is a moderator" src="/images/roles/moderator.png" width="20" height="20" />
|
||||||
</picture>
|
</picture>
|
||||||
HTML
|
HTML
|
||||||
|
@ -84,13 +84,13 @@ class UserRolesHelperTest < ActionView::TestCase
|
||||||
expected = <<~HTML.delete("\n")
|
expected = <<~HTML.delete("\n")
|
||||||
<a confirm="Are you sure you want to grant the role `administrator' to the user `#{user.display_name}'?" rel="nofollow" data-method="post" href="/user/#{ERB::Util.u(user.display_name)}/role/administrator/grant">
|
<a confirm="Are you sure you want to grant the role `administrator' to the user `#{user.display_name}'?" rel="nofollow" data-method="post" href="/user/#{ERB::Util.u(user.display_name)}/role/administrator/grant">
|
||||||
<picture>
|
<picture>
|
||||||
<source srcset="/images/roles/blank_administrator.svg" type="image/svg+xml" />
|
<source srcset="/images/roles/blank_administrator.svg" type="image/svg+xml">
|
||||||
<img srcset="/images/roles/blank_administrator.svg" border="0" alt="Grant administrator access" title="Grant administrator access" src="/images/roles/blank_administrator.png" width="20" height="20" />
|
<img srcset="/images/roles/blank_administrator.svg" border="0" alt="Grant administrator access" title="Grant administrator access" src="/images/roles/blank_administrator.png" width="20" height="20" />
|
||||||
</picture>
|
</picture>
|
||||||
</a>
|
</a>
|
||||||
<a confirm="Are you sure you want to grant the role `moderator' to the user `#{user.display_name}'?" rel="nofollow" data-method="post" href="/user/#{ERB::Util.u(user.display_name)}/role/moderator/grant">
|
<a confirm="Are you sure you want to grant the role `moderator' to the user `#{user.display_name}'?" rel="nofollow" data-method="post" href="/user/#{ERB::Util.u(user.display_name)}/role/moderator/grant">
|
||||||
<picture>
|
<picture>
|
||||||
<source srcset="/images/roles/blank_moderator.svg" type="image/svg+xml" />
|
<source srcset="/images/roles/blank_moderator.svg" type="image/svg+xml">
|
||||||
<img srcset="/images/roles/blank_moderator.svg" border="0" alt="Grant moderator access" title="Grant moderator access" src="/images/roles/blank_moderator.png" width="20" height="20" />
|
<img srcset="/images/roles/blank_moderator.svg" border="0" alt="Grant moderator access" title="Grant moderator access" src="/images/roles/blank_moderator.png" width="20" height="20" />
|
||||||
</picture>
|
</picture>
|
||||||
</a>
|
</a>
|
||||||
|
@ -102,13 +102,13 @@ class UserRolesHelperTest < ActionView::TestCase
|
||||||
expected = <<~HTML.delete("\n")
|
expected = <<~HTML.delete("\n")
|
||||||
<a confirm="Are you sure you want to grant the role `administrator' to the user `#{moderator_user.display_name}'?" rel="nofollow" data-method="post" href="/user/#{ERB::Util.u(moderator_user.display_name)}/role/administrator/grant">
|
<a confirm="Are you sure you want to grant the role `administrator' to the user `#{moderator_user.display_name}'?" rel="nofollow" data-method="post" href="/user/#{ERB::Util.u(moderator_user.display_name)}/role/administrator/grant">
|
||||||
<picture>
|
<picture>
|
||||||
<source srcset="/images/roles/blank_administrator.svg" type="image/svg+xml" />
|
<source srcset="/images/roles/blank_administrator.svg" type="image/svg+xml">
|
||||||
<img srcset="/images/roles/blank_administrator.svg" border="0" alt="Grant administrator access" title="Grant administrator access" src="/images/roles/blank_administrator.png" width="20" height="20" />
|
<img srcset="/images/roles/blank_administrator.svg" border="0" alt="Grant administrator access" title="Grant administrator access" src="/images/roles/blank_administrator.png" width="20" height="20" />
|
||||||
</picture>
|
</picture>
|
||||||
</a>
|
</a>
|
||||||
<a confirm="Are you sure you want to revoke the role `moderator' from the user `#{moderator_user.display_name}'?" rel="nofollow" data-method="post" href="/user/#{ERB::Util.u(moderator_user.display_name)}/role/moderator/revoke">
|
<a confirm="Are you sure you want to revoke the role `moderator' from the user `#{moderator_user.display_name}'?" rel="nofollow" data-method="post" href="/user/#{ERB::Util.u(moderator_user.display_name)}/role/moderator/revoke">
|
||||||
<picture>
|
<picture>
|
||||||
<source srcset="/images/roles/moderator.svg" type="image/svg+xml" />
|
<source srcset="/images/roles/moderator.svg" type="image/svg+xml">
|
||||||
<img srcset="/images/roles/moderator.svg" border="0" alt="Revoke moderator access" title="Revoke moderator access" src="/images/roles/moderator.png" width="20" height="20" />
|
<img srcset="/images/roles/moderator.svg" border="0" alt="Revoke moderator access" title="Revoke moderator access" src="/images/roles/moderator.png" width="20" height="20" />
|
||||||
</picture>
|
</picture>
|
||||||
</a>
|
</a>
|
||||||
|
@ -120,13 +120,13 @@ class UserRolesHelperTest < ActionView::TestCase
|
||||||
expected = <<~HTML.delete("\n")
|
expected = <<~HTML.delete("\n")
|
||||||
<a confirm="Are you sure you want to revoke the role `administrator' from the user `#{super_user.display_name}'?" rel="nofollow" data-method="post" href="/user/#{ERB::Util.u(super_user.display_name)}/role/administrator/revoke">
|
<a confirm="Are you sure you want to revoke the role `administrator' from the user `#{super_user.display_name}'?" rel="nofollow" data-method="post" href="/user/#{ERB::Util.u(super_user.display_name)}/role/administrator/revoke">
|
||||||
<picture>
|
<picture>
|
||||||
<source srcset="/images/roles/administrator.svg" type="image/svg+xml" />
|
<source srcset="/images/roles/administrator.svg" type="image/svg+xml">
|
||||||
<img srcset="/images/roles/administrator.svg" border="0" alt="Revoke administrator access" title="Revoke administrator access" src="/images/roles/administrator.png" width="20" height="20" />
|
<img srcset="/images/roles/administrator.svg" border="0" alt="Revoke administrator access" title="Revoke administrator access" src="/images/roles/administrator.png" width="20" height="20" />
|
||||||
</picture>
|
</picture>
|
||||||
</a>
|
</a>
|
||||||
<a confirm="Are you sure you want to revoke the role `moderator' from the user `#{super_user.display_name}'?" rel="nofollow" data-method="post" href="/user/#{ERB::Util.u(super_user.display_name)}/role/moderator/revoke">
|
<a confirm="Are you sure you want to revoke the role `moderator' from the user `#{super_user.display_name}'?" rel="nofollow" data-method="post" href="/user/#{ERB::Util.u(super_user.display_name)}/role/moderator/revoke">
|
||||||
<picture>
|
<picture>
|
||||||
<source srcset="/images/roles/moderator.svg" type="image/svg+xml" />
|
<source srcset="/images/roles/moderator.svg" type="image/svg+xml">
|
||||||
<img srcset="/images/roles/moderator.svg" border="0" alt="Revoke moderator access" title="Revoke moderator access" src="/images/roles/moderator.png" width="20" height="20" />
|
<img srcset="/images/roles/moderator.svg" border="0" alt="Revoke moderator access" title="Revoke moderator access" src="/images/roles/moderator.png" width="20" height="20" />
|
||||||
</picture>
|
</picture>
|
||||||
</a>
|
</a>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue