Sha256: 07415bce9bd81cfefc2e57dd6365d513a7f177637dace733e1a4c3e1dbfc9775

Contents?: true

Size: 1.16 KB

Versions: 6

Compression:

Stored size: 1.16 KB

Contents

inherit_from: .rubocop_todo.yml

AllCops:
  TargetRubyVersion: 1.9
  Include:
    - "**/*.cap"
    - "Gemfile"
    - "Rakefile"
    - "appsignal.gemspec"
  Exclude:
    - "tmp/**/*"
    - "gemfiles/vendor/**/*"
    - "vendor/**/*"
    - "benchmark.rake"
  DisplayCopNames: true
  UseCache: true
  CacheRootDirectory: ./tmp

Style/Documentation:
  Enabled: false

Style/StringLiterals:
  EnforcedStyle: double_quotes

Style/StringLiteralsInInterpolation:
  EnforcedStyle: double_quotes

Layout/AlignParameters:
  EnforcedStyle: with_fixed_indentation

Layout/MultilineMethodCallIndentation:
  EnforcedStyle: indented

Layout/MultilineOperationIndentation:
  EnforcedStyle: indented

Style/HashSyntax:
  EnforcedStyle: hash_rockets

Layout/AlignHash:
  EnforcedLastArgumentHashStyle: ignore_implicit

Layout/IndentArray:
  EnforcedStyle: consistent

Style/EmptyMethod:
  EnforcedStyle: expanded

Style/MethodMissing:
  Exclude:
    - "lib/appsignal/extension.rb"
    - "lib/appsignal/transaction.rb"

Style/TrailingUnderscoreVariable:
  Enabled: false

Style/FileName:
  Exclude:
    - "ext/Rakefile"

Metrics/BlockLength:
  Exclude:
    - "Rakefile"

# Metrics/LineLength:
#   Max: 80

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
appsignal-2.5.0-java .rubocop.yml
appsignal-2.5.0 .rubocop.yml
appsignal-2.5.0.beta.1-java .rubocop.yml
appsignal-2.5.0.beta.1 .rubocop.yml
appsignal-2.5.0.alpha.1-java .rubocop.yml
appsignal-2.5.0.alpha.1 .rubocop.yml