Sha256: 70ef249049961de50f189db5782e37f5eb70e8a8ff71ed0b7bd4b035539d43d1

Contents?: true

Size: 1.34 KB

Versions: 3

Compression:

Stored size: 1.34 KB

Contents

require: rubocop-performance

AllCops:
  TargetRubyVersion: 2.2
  Exclude:
    - "examples/**/*"
    - "vendor/**/*"

Style/StringLiterals:
  EnforcedStyle: double_quotes

Metrics/BlockLength:
  Exclude:
    - honeycomb-beeline.gemspec
    - spec/**/*.rb

Metrics/AbcSize:
  Max: 50

Metrics/ClassLength:
  Max: 200

Metrics/MethodLength:
  Max: 25
  Exclude:
    - lib/generators/honeycomb/honeycomb_generator.rb

Metrics/LineLength:
  Exclude:
    - spec/honeycomb/integrations/active_support_spec.rb
    - spec/support/event_data_shared_examples.rb

Metrics/ParameterLists:
  Max: 6

Style/AccessModifierDeclarations:
  Exclude:
    - lib/honeycomb/propagation/aws.rb
    - lib/honeycomb/propagation/w3c.rb
    - lib/honeycomb/propagation/honeycomb.rb
    - lib/honeycomb/propagation/default.rb

Style/FrozenStringLiteralComment:
  EnforcedStyle: always
  Exclude:
    - gemfiles/**/*

Naming/FileName:
  Exclude:
    - lib/honeycomb-beeline.rb

Style/SymbolProc:
  Exclude:
    - lib/honeycomb/span.rb

Lint/HandleExceptions:
  Exclude:
    - lib/honeycomb-beeline.rb

Style/TrailingCommaInArguments:
  EnforcedStyleForMultiline: comma

Style/TrailingCommaInArrayLiteral:
  EnforcedStyleForMultiline: comma

Style/TrailingCommaInHashLiteral:
  EnforcedStyleForMultiline: comma

Style/AsciiComments:
  Enabled: false

Style/Alias:
  EnforcedStyle: prefer_alias_method

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
honeycomb-beeline-2.8.2 .rubocop.yml
honeycomb-beeline-2.8.1 .rubocop.yml
honeycomb-beeline-2.8.0 .rubocop.yml