X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/58e95f7ea46accda6359b187ce5936aad4ac5945..544450697654797e7c69710a2567d52819d210d1:/.rubocop_todo.yml diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index 57f876bd9..366058e7d 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -1,12 +1,26 @@ # This configuration was generated by # `rubocop --auto-gen-config` -# on 2019-10-07 20:37:25 +0100 using RuboCop version 0.75.0. +# on 2019-10-19 16:05:52 +0000 using RuboCop version 0.75.0. # The point is for the user to remove these configuration records # one by one as the offenses are removed from the code base. # Note that changes in the inspected code, or installation of new # versions of RuboCop, may require this file to be generated again. -# Offense count: 34 +# 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: 370 + +# Offense count: 35 # Configuration parameters: AllowSafeAssignment. Lint/AssignmentInCondition: Exclude: @@ -27,12 +41,13 @@ Lint/AssignmentInCondition: # Offense count: 4 # Configuration parameters: AllowComments. -Lint/HandleExceptions: +Lint/SuppressedException: Exclude: - 'app/controllers/api/amf_controller.rb' - 'app/controllers/users_controller.rb' + - 'app/controllers/site_controller.rb' -# Offense count: 700 +# Offense count: 701 Metrics/AbcSize: Max: 189 @@ -52,11 +67,11 @@ Metrics/BlockNesting: Metrics/ClassLength: Max: 645 -# Offense count: 73 +# Offense count: 74 Metrics/CyclomaticComplexity: - Max: 22 + Max: 28 -# Offense count: 721 +# Offense count: 722 # Configuration parameters: CountComments, ExcludedMethods. Metrics/MethodLength: Max: 179 @@ -64,14 +79,14 @@ Metrics/MethodLength: # Offense count: 2 # Configuration parameters: CountComments. Metrics/ModuleLength: - Max: 107 + Max: 117 # Offense count: 4 # Configuration parameters: CountKeywordArgs. Metrics/ParameterLists: Max: 9 -# Offense count: 71 +# Offense count: 72 Metrics/PerceivedComplexity: Max: 25 @@ -173,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 @@ -208,10 +219,3 @@ Style/IfUnlessModifier: # Configuration parameters: Strict. Style/NumericLiterals: MinDigits: 11 - -# Offense count: 3330 -# Cop supports --auto-correct. -# Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns. -# URISchemes: http, https -Metrics/LineLength: - Max: 307