X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/2722cc60be5107d7f99c9818b5b24005a73245b2..97036c181e307dae10bb019dbcbd7a50d30bb3b8:/.rubocop_todo.yml diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index 80551c4b7..080b7b3a5 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -6,6 +6,19 @@ # 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-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: @@ -186,6 +199,9 @@ Style/FormatStringToken: - 'test/controllers/api/relations_controller_test.rb' - 'test/controllers/api/ways_controller_test.rb' - 'test/lib/bounding_box_test.rb' + - 'app/views/api/map/_bounds.json.jbuilder' + - 'app/views/api/nodes/_node.json.jbuilder' + - 'app/views/api/old_nodes/_old_node.json.jbuilder' # Offense count: 539 # Cop supports --auto-correct. @@ -205,10 +221,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