X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/32fa1246986473126505fd3d3f2687cd7bd19825..506731031dc919c4342aecb4254cc177eac9ade5:/.rubocop_todo.yml diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index f768dddc6..307a23f4b 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -6,6 +6,20 @@ # Note that changes in the inspected code, or installation of new # versions of RuboCop, may require this file to be generated again. +# Work around erblint issues. +# https://github.com/openstreetmap/openstreetmap-website/issues/2472 +require: + - rubocop-minitest + - rubocop-performance + - rubocop-rails + +# Offense count: 3338 +# Cop supports --auto-correct. +# Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns. +# URISchemes: http, https +Layout/LineLength: + Max: 260 + # Offense count: 35 # Configuration parameters: AllowSafeAssignment. Lint/AssignmentInCondition: @@ -174,10 +188,6 @@ Style/AsciiComments: Exclude: - 'test/models/message_test.rb' -# Offense count: 263 -Style/Documentation: - Enabled: false - # Offense count: 27 # Configuration parameters: EnforcedStyle. # SupportedStyles: annotated, template, unannotated @@ -209,10 +219,3 @@ Style/IfUnlessModifier: # Configuration parameters: Strict. Style/NumericLiterals: MinDigits: 11 - -# Offense count: 3338 -# Cop supports --auto-correct. -# Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns. -# URISchemes: http, https -Metrics/LineLength: - Max: 307