Dynamoid/dynamoid

View on GitHub
.rubocop_todo.yml

Summary

Maintainability
Test Coverage
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2022-12-16 17:45:21 -0700 using RuboCop version 0.81.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: 1
# Cop supports --auto-correct.
Lint/OrderedMagicComments:
  Exclude:
    - 'lib/dynamoid/persistence.rb'

# Offense count: 3
# Configuration parameters: AllowComments.
Lint/SuppressedException:
  Exclude:
    - 'lib/dynamoid/dirty.rb'
    - 'lib/dynamoid/persistence/update_fields.rb'
    - 'lib/dynamoid/persistence/upsert.rb'

# Offense count: 1
# Configuration parameters: EnforcedStyleForLeadingUnderscores.
# SupportedStylesForLeadingUnderscores: disallowed, required, optional
Naming/MemoizedInstanceVariableName:
  Exclude:
    - 'lib/dynamoid/dirty.rb'

# Offense count: 13
RSpec/AnyInstance:
  Exclude:
    - 'spec/dynamoid/adapter_plugin/aws_sdk_v3_spec.rb'
    - 'spec/dynamoid/adapter_spec.rb'
    - 'spec/dynamoid/criteria/chain_spec.rb'
    - 'spec/dynamoid/persistence_spec.rb'

# Offense count: 125
# Configuration parameters: Prefixes.
# Prefixes: when, with, without
RSpec/ContextWording:
  Enabled: false

# Offense count: 2
RSpec/DescribeClass:
  Exclude:
    - 'spec/dynamoid/before_type_cast_spec.rb'
    - 'spec/dynamoid/type_casting_spec.rb'

# Offense count: 4
# Configuration parameters: CustomIncludeMethods.
RSpec/EmptyExampleGroup:
  Exclude:
    - 'spec/dynamoid/persistence_spec.rb'
    - 'spec/dynamoid/type_casting_spec.rb'

# Offense count: 8
RSpec/LeakyConstantDeclaration:
  Exclude:
    - 'spec/dynamoid/criteria/chain_spec.rb'
    - 'spec/dynamoid/indexes_spec.rb'
    - 'spec/dynamoid/sti_spec.rb'

# Offense count: 1
RSpec/LetSetup:
  Exclude:
    - 'spec/dynamoid/sti_spec.rb'

# Offense count: 2
RSpec/RepeatedDescription:
  Exclude:
    - 'spec/dynamoid/associations/belongs_to_spec.rb'

# Offense count: 2
RSpec/RepeatedExample:
  Exclude:
    - 'spec/dynamoid/associations/has_one_spec.rb'

# Offense count: 6
RSpec/RepeatedExampleGroupDescription:
  Exclude:
    - 'spec/dynamoid/adapter_plugin/aws_sdk_v3_spec.rb'
    - 'spec/dynamoid/finders_spec.rb'

# Offense count: 9
RSpec/SubjectStub:
  Exclude:
    - 'spec/dynamoid/adapter_spec.rb'

# Offense count: 2
Style/CommentedKeyword:
  Exclude:
    - 'lib/dynamoid/dirty.rb'

# Offense count: 2
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, Autocorrect.
# SupportedStyles: module_function, extend_self, forbidden
Style/ModuleFunction:
  Exclude:
    - 'lib/dynamoid.rb'
    - 'lib/dynamoid/config.rb'

# Offense count: 3
Style/OptionalArguments:
  Exclude:
    - 'lib/dynamoid/persistence.rb'

# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: AllowAsExpressionSeparator.
Style/Semicolon:
  Exclude:
    - 'spec/dynamoid/adapter_plugin/aws_sdk_v3_spec.rb'

# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: ExactNameMatch, AllowPredicates, AllowDSLWriters, IgnoreClassMethods, AllowedMethods.
# AllowedMethods: to_ary, to_a, to_c, to_enum, to_h, to_hash, to_i, to_int, to_io, to_open, to_path, to_proc, to_r, to_regexp, to_str, to_s, to_sym
Style/TrivialAccessors:
  Exclude:
    - 'lib/dynamoid/adapter_plugin/aws_sdk_v3.rb'