enkessler/cuketagger

View on GitHub
.rubocop_todo.yml

Summary

Maintainability
Test Coverage
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2022-02-13 21:04:56 -0500 using RuboCop version 0.50.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: 5
Metrics/AbcSize:
  Max: 25
  Exclude:
    - 'lib/cuketagger/tagger.rb'

# Offense count: 27
# Configuration parameters: CountComments, ExcludedMethods.
Metrics/BlockLength:
  Max: 1311
  Exclude:
    - testing/rspec/spec/tagger_integration_spec.rb

# Offense count: 1
# Configuration parameters: CountComments.
Metrics/ClassLength:
  Max: 170
  Exclude:
    - 'lib/cuketagger/tagger.rb'

# Offense count: 1
Metrics/CyclomaticComplexity:
  Max: 8


# Offense count: 4
# Configuration parameters: CountComments.
Metrics/MethodLength:
  Max: 21