Sha256: fcab0d57d43f9184ef009b995e11d591c2fd05e2024a3c68842d33fdc67d50f5

Contents?: true

Size: 956 Bytes

Versions: 1

Compression:

Stored size: 956 Bytes

Contents

inherit_from:
  - .rubocop_todo.yml
  - .rubocop.hound.yml

AllCops:
  NewCops: enable
  Exclude:
    - '*.gemspec'
    - 'Gemfile'

Style/Lambda:
  Enabled: false

Layout/EmptyLinesAroundClassBody:
  Enabled: false

Layout/EmptyLinesAroundModuleBody:
  Enabled: false

Layout/EmptyLinesAroundMethodBody:
  Enabled: false

Style/ClassCheck:
  Enabled: false
  # we don't care about kind_of? vs is_a?

Style/StringLiterals:
  Enabled: false

Naming/FileName:
  Enabled: false

Style/RedundantException:
  Enabled: false

Style/SignalException:
  Enabled: false

Style/BlockDelimiters:
  Enabled: false

# Github's PR width is 120 characters
Layout/LineLength:
  Max: 120
  AllowURI: true
  Exclude:
    - spec/**/*

# Align with the style guide, we don't prefer anything
Style/CollectionMethods:
  Enabled: false

Metrics/AbcSize:
  Description: A calculated magnitude based on number of assignments, branches, and
    conditions.
  Enabled: true
  Max: 30

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
webhook_system-2.4.0 .rubocop.yml