Sha256: 146d09b7286825bfa39ec3892567a732f89ce3f21d648a8a6ae31444da95a213

Contents?: true

Size: 1003 Bytes

Versions: 10

Compression:

Stored size: 1003 Bytes

Contents

---

require:
  - rubocop-performance

AllCops:
  Exclude:
    - tmp/**/*

  DisplayCopNames: true
  DisplayStyleGuide: true

  TargetRubyVersion: 2.5

Layout/ExtraSpacing:
  AllowForAlignment: true

Lint/InterpolationCheck:
  Enabled: false

Metrics:
  Enabled: true

Metrics/LineLength:
  Max: 100

Metrics/MethodLength:
  Max: 25

Metrics/AbcSize:
  Max: 25

Metrics/ModuleLength:
  Max: 300

Naming/FileName:
  Exclude:
    - .simplecov

TrivialAccessors:
  ExactNameMatch: true

Style/ModuleFunction:
  EnforcedStyle: extend_self

# https://github.com/bbatsov/rubocop/pull/72
Style/AsciiComments:
  Enabled: false

Style/StringLiterals:
  EnforcedStyle: double_quotes

# Don't see why storing context information in the exception is a bad thing
Style/RaiseArgs:
  Enabled: false

# Allow adding comments at `end` of classes and modules
Style/CommentedKeyword:
  Enabled: false

# Allow `!!value` for casting to Boolean
Style/DoubleNegation:
  Enabled: false

EmptyMethod:
  EnforcedStyle: expanded

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
mimi-messaging-1.2.8 .rubocop.yml
mimi-messaging-1.2.7 .rubocop.yml
mimi-messaging-1.2.6 .rubocop.yml
mimi-messaging-1.2.5 .rubocop.yml
mimi-messaging-1.2.4 .rubocop.yml
mimi-messaging-1.2.2 .rubocop.yml
mimi-messaging-1.2.1 .rubocop.yml
mimi-messaging-1.1.1 .rubocop.yml
mimi-messaging-1.1.0 .rubocop.yml
mimi-messaging-1.0.0 .rubocop.yml