mongoid/mongoid-scroll

View on GitHub
.rubocop_todo.yml

Summary

Maintainability
Test Coverage
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2023-03-09 01:14:57 +0100 using RuboCop version 0.49.1.
# 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: 5
# Configuration parameters: Include.
# Include: **/Gemfile, **/gems.rb
Bundler/DuplicatedGem:
  Exclude:
    - 'Gemfile'

# Offense count: 8
Metrics/AbcSize:
  Max: 38

# Offense count: 18
# Configuration parameters: CountComments, ExcludedMethods.
Metrics/BlockLength:
  Max: 274

# Offense count: 1
# Configuration parameters: CountComments.
Metrics/ClassLength:
  Max: 103

# Offense count: 5
Metrics/CyclomaticComplexity:
  Max: 13

# Offense count: 153
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
# URISchemes: http, https
Metrics/LineLength:
  Max: 252

# Offense count: 7
# Configuration parameters: CountComments.
Metrics/MethodLength:
  Max: 23

# Offense count: 4
Metrics/PerceivedComplexity:
  Max: 12

# Offense count: 11
Style/Documentation:
  Exclude:
    - 'spec/**/*'
    - 'test/**/*'
    - 'examples/mongoid_scroll_feed.rb'
    - 'lib/mongo/scrollable.rb'
    - 'lib/mongoid/criteria/scrollable.rb'
    - 'lib/mongoid/scroll/base_cursor.rb'
    - 'lib/mongoid/scroll/cursor.rb'
    - 'lib/mongoid/scroll/errors/base.rb'
    - 'lib/mongoid/scroll/errors/invalid_base64_cursor_error.rb'
    - 'lib/mongoid/scroll/errors/invalid_cursor_error.rb'
    - 'lib/mongoid/scroll/errors/multiple_sort_fields_error.rb'
    - 'lib/mongoid/scroll/errors/no_such_field_error.rb'
    - 'lib/mongoid/scroll/errors/unsupported_field_type_error.rb'

# Offense count: 1
# Configuration parameters: ExpectMatchingDefinition, Regex, IgnoreExecutableScripts, AllowedAcronyms.
# AllowedAcronyms: CLI, DSL, ACL, API, ASCII, CPU, CSS, DNS, EOF, GUID, HTML, HTTP, HTTPS, ID, IP, JSON, LHS, QPS, RAM, RHS, RPC, SLA, SMTP, SQL, SSH, TCP, TLS, TTL, UDP, UI, UID, UUID, URI, URL, UTF8, VM, XML, XMPP, XSRF, XSS
Style/FileName:
  Exclude:
    - 'lib/mongoid-scroll.rb'

# Offense count: 1
Style/MultilineTernaryOperator:
  Exclude:
    - 'lib/mongoid/scroll/cursor.rb'

# Offense count: 3
# Cop supports --auto-correct.
# Configuration parameters: SupportedStyles.
# SupportedStyles: compact, exploded
Style/RaiseArgs:
  EnforcedStyle: compact