Sha256: 8cc94a87e9c5a86bd4cb46a6b64902f938436de956422a19ef767266d545a804

Contents?: true

Size: 943 Bytes

Versions: 2

Compression:

Stored size: 943 Bytes

Contents

inherit_gem:
  relaxed-rubocop: .rubocop.yml

inherit_from:
  - .rubocop-performance.yml
  - .rubocop-rails.yml
  - .rubocop-rspec.yml

AllCops:
  Exclude:
    - vendor/**/* # Prevent validation of bundler gems
  NewCops: disable # Ignore "pending" cops

Metrics/BlockLength:
  Enabled: false # Length is an unreliable metric.

Style/ClassAndModuleChildren:
  Enabled: false # Neither styles are satisfying in all cases

Layout/SpaceInsideArrayLiteralBrackets:
  EnforcedStyle: no_space # Similar to prettier's config.

Layout/FirstArrayElementIndentation:
  EnforcedStyle: consistent # Consistent with Layout/FirstArgumentIndentation

Layout/FirstHashElementIndentation:
  EnforcedStyle: consistent # Consistent with Layout/FirstArgumentIndentation

Layout/MultilineMethodCallIndentation:
  EnforcedStyle: indented # Consistent with Rails style

Layout/ArgumentAlignment:
  EnforcedStyle: with_fixed_indentation # Consistent with Rails style

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
getaround-rubocop-0.2.10 .rubocop.yml
getaround-rubocop-0.2.9 .rubocop.yml