]> git.openstreetmap.org Git - rails.git/blobdiff - .rubocop_todo.yml
JSON output, handle Accept header
[rails.git] / .rubocop_todo.yml
index 80551c4b7737bf402350d34d69947f952abe919a..080b7b3a524931c3baae9d1b7128579f12a61db2 100644 (file)
@@ -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