Sha256: 8e75ab19376e37196d32cd1e5695cfd6ffe978edfdf0db544c652a54aac15081

Contents?: true

Size: 908 Bytes

Versions: 1

Compression:

Stored size: 908 Bytes

Contents

require: rubocop-rspec

AllCops:
  RunRailsCops: true
  Include:
    - '**/Rakefile'
    - config.ru
  Exclude:
    - bin/**/*
    - db/**/*
    - config/**/*
    - script/**/*
    - db/schema.rb

Style/MultilineOperationIndentation:
  EnforcedStyle: indented

Style/Documentation:
  Enabled: false

Style/WhileUntilModifier:
  MaxLineLength: 120
  Exclude:
    - spec/**/*

Style/SpaceInsideHashLiteralBraces:
  EnforcedStyle: no_space
  EnforcedStyleForEmptyBraces: no_space

Style/MultilineBlockChain:
  Enabled: true

Style/DotPosition:
  EnforcedStyle: trailing
  Enabled: true

Style/SingleLineMethods:
  AllowIfMethodIsEmpty: false

Style/NumericLiterals:
  Enabled: false

Metrics/LineLength:
  Max: 120
  Enabled: true
  Exclude:
    - spec/**/*

Metrics/MethodLength:
  CountComments: false  # count full line comments?
  Max: 30

RSpec/FilePath:
  Exclude:
    - spec/routing/**/*_routing_spec.rb

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rspec-hive-0.1.0 .rubocop_u2i.yml