Sha256: 70535701eb8bf841d9236bff1ad36632a7948f39c068a18a4e77e4f3ccd32341

Contents?: true

Size: 553 Bytes

Versions: 6

Compression:

Stored size: 553 Bytes

Contents

# By default, would enforce { key: value } rather than { :key => value }.
AllCops:
  RunRailsCops: true

# Multi-line method chaining should be done with trailing dots.
Style/DotPosition:
  EnforcedStyle: trailing

HashSyntax:
  EnforcedStyle: hash_rockets
  SupportedStyles:
    - ruby19
    - hash_rockets

# Would enforce "-> { }", which we cannot use yet.
Lambda:
  Enabled: false

# ...
LineLength:
  Max: 99

# Relax some of the cops for tests
Metrics/ClassLength: &exclude_tests
  Exclude:
    - test/**/*.rb
Metrics/MethodLength: *exclude_tests

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
ndr_import-3.1.1 .rubocop.yml
ndr_import-3.1.0 .rubocop.yml
ndr_support-3.2.0 .rubocop.yml
ndr_import-3.0.1 .rubocop.yml
ndr_import-3.0.0 .rubocop.yml
ndr_support-3.1.1 .rubocop.yml