Sha256: f7d958e749ce3d4a5eed726ad46170380246f0acad1c381ab4e3be46ab683af0

Contents?: true

Size: 895 Bytes

Versions: 5

Compression:

Stored size: 895 Bytes

Contents

require: rubocop-rspec

AllCops:
  TargetRubyVersion: 2.4

  Exclude:
    - 'bin/*'
    - 'vendor/**/*'

Style/ClassAndModuleChildren:
  Enabled: false

Style/Documentation:
  Enabled: false

Metrics/AbcSize:
  Max: 18

Metrics/LineLength:
  # Commonly used screens these days easily fit more than 80 characters.
  Max: 120
  Exclude:
    - 'spec/**/*'

Metrics/MethodLength:
  # Too short methods lead to extraction of single-use methods, which can make
  # the code easier to read (by naming things), but can also clutter the class
  Max: 20

Metrics/BlockLength:
  Exclude:
    - 'spec/**/*'

Layout/SpaceAroundEqualsInParameterDefault:
  # No space makes the method definition shorter and differentiates
  # from a regular assignment.
  EnforcedStyle: no_space

Style/SymbolArray:
  # We do not need to support Ruby 1.9, so this is good to use.
  Enabled: true

RSpec/NestedGroups:
  Max: 5

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
firebug-1.2.0 .rubocop.yml
firebug-1.1.0 .rubocop.yml
firebug-1.0.0 .rubocop.yml
firebug-0.2.0 .rubocop.yml
firebug-0.1.10 .rubocop.yml