Sha256: 59bf9ac28f84933794cc02692c95a14ae7b1f60a6bea53a5b3cb51074fc410e5

Contents?: true

Size: 929 Bytes

Versions: 4

Compression:

Stored size: 929 Bytes

Contents

require:
  - rubocop-performance
  - rubocop-rake
  - rubocop-rspec

inherit_mode:
  merge:
    - Include

AllCops:
  Include:
    - "**/*.gemspec"
    - "**/*.rake"
    - "**/Gemfile"
    - "**/Rakefile"
  Exclude:
    - "bin/**/*"
    - "config.ru"
    - "vendor/bundle/**/*" # for CI
  CacheRootDirectory: tmp/cache/rubocop_cache/
  TargetRubyVersion: '2.6'
  DefaultFormatter: fuubar
  NewCops: enable

Layout/EndOfLine:
  EnforcedStyle: lf

Layout/LineLength:
  Max: 120

Layout/MultilineMethodCallIndentation:
  EnforcedStyle: indented
  IndentationWidth: 2

Lint/AmbiguousBlockAssociation:
  Exclude:
    - "spec/**/*"

Metrics/BlockLength:
  Enabled: false

Performance/MethodObjectAsBlock:
  Enabled: false

RSpec/AnyInstance:
  Enabled: false

RSpec/ExampleLength:
  Enabled: false

RSpec/MultipleExpectations:
  Enabled: false

Style/Documentation:
  Enabled: false

Style/FrozenStringLiteralComment:
  Enabled: false

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ubersicht-ruby-sdk-0.5.0 .rubocop.yml
ubersicht-ruby-sdk-0.4.0 .rubocop.yml
ubersicht-ruby-sdk-0.3.0 .rubocop.yml
ubersicht-ruby-sdk-0.2.0 .rubocop.yml