# 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:
# 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: 701
Metrics/AbcSize:
Exclude:
- 'test/models/message_test.rb'
-# Offense count: 263
-Style/Documentation:
- Enabled: false
-
# Offense count: 27
# Configuration parameters: EnforcedStyle.
# SupportedStyles: annotated, template, unannotated
# 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