Sha256: 9a399def3e16cc0a71e4f66ff10af690f9493783182c31f03dfbfa5e947b0831

Contents?: true

Size: 837 Bytes

Versions: 3

Compression:

Stored size: 837 Bytes

Contents

require: rubocop-rspec

AllCops:
  TargetRubyVersion: 2.4

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

Style/ClassAndModuleChildren:
  Enabled: false

Style/Documentation:
  Enabled: false

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
firebug-0.1.1 .rubocop.yml
firebug-0.1.0 .rubocop.yml
firebug-0.0.7 .rubocop.yml