Sha256: bba424293120bf4e65150b0fe9abe1e75f46bdf31b4118cab6f3eab09bfe9161

Contents?: true

Size: 661 Bytes

Versions: 5

Compression:

Stored size: 661 Bytes

Contents

# This strict rubocop config should be used before submiting PR and should pass
# Doesn't include:
# - specs


AllCops:
  # Include gemspec and Rakefile
  Include:
    - 'app/**/*.rb'
    - 'config/**/*.rb'
    - 'lib/**/*.rb'
    - 'lib/**/*.rake'
  Exclude:
    - 'vendor/**/*'
    - 'spec/**/*'
    - 'db/*.rb'
    - 'bin/**/*'
  RunRailsCops: false
  DisplayCopNames: true
  StyleGuideCopsOnly: false

Metrics/LineLength:
  Max: 100

Metrics/MethodLength:
  Max: 15

Metrics/AbcSize:
  Max: 20

Style/BarePercentLiterals:
  Enabled: false

Style/CommentAnnotation:
  Enabled: false

Style/RaiseArgs:
  Enabled: false

Style/StringLiterals: 
  Enabled: false

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
pgrel-0.3.0 .rubocop.yml
pgrel-0.2.0 .rubocop.yml
pgrel-0.1.3 .rubocop.yml
pgrel-0.1.2 .rubocop.yml
pgrel-0.1.1 .rubocop.yml