Sha256: 1ca0f3a14d8465d757440c52adfc9294a1e17a429d22e5a2dc3e7c102ed8ce07

Contents?: true

Size: 906 Bytes

Versions: 1

Compression:

Stored size: 906 Bytes

Contents

inherit_gem:
  relaxed-rubocop: .rubocop.yml

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

Style/ClassAndModuleChildren:
  # "compact" style requires explicit module declarations
  # "nested" syle promotes deep scopes which needs a lot of unnecessary indentation
  Enabled: false

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

AllCops:
  Exclude:
    - vendor/**/* # Prevent validation of bundler gems

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
getaround-rubocop-0.1.6 .rubocop.yml