Sha256: c43d32fd4a5380ba451aa564e06c599a0d49b9dafd3e16df4d3aa7df3cfb0836

Contents?: true

Size: 1.63 KB

Versions: 6

Compression:

Stored size: 1.63 KB

Contents

require: rubocop-rspec
inherit_from: .rubocop_todo.yml
AllCops:
  Include:
    - Rakefile
    - lib/**/*.rake

Lint/EndAlignment:
  EnforcedStyleAlignWith: variable

Metrics/LineLength:
  Max: 100

Style/CaseIndentation:
  EnforcedStyle: end

Style/AlignParameters:
  EnforcedStyle: with_fixed_indentation

Style/Documentation:
  Enabled: false

Style/DoubleNegation:
  Enabled: false

Style/IndentArray:
  EnforcedStyle: consistent

Style/MultilineMethodCallIndentation:
  EnforcedStyle: indented

Style/MultilineOperationIndentation:
  EnforcedStyle: indented

# Disable Style/NumericLiterals so numbers don't need underscores
Style/NumericLiterals:
  Enabled: false

Style/NumericPredicate:
  EnforcedStyle: comparison

Style/RedundantBegin:
  Enabled: false

Style/RegexpLiteral:
  EnforcedStyle: slashes
  AllowInnerSlashes: true

Style/SpaceInsideHashLiteralBraces:
  EnforcedStyle: no_space

Style/TrailingCommaInArguments:
  EnforcedStyleForMultiline: consistent_comma

Style/TrailingCommaInLiteral:
  EnforcedStyleForMultiline: consistent_comma

RSpec/MessageSpies:
  EnforcedStyle: receive

RSpec/ExampleLength:
  Enabled: false

Style/FileName:
  Exclude:
    - 'Gemfile'
    - 'Guardfile'
    - 'percy-capybara.gemspec'

Style/EmptyLineAfterMagicComment:
  Exclude:
    - 'percy-capybara.gemspec'

Style/PercentLiteralDelimiters:
  Exclude:
    - 'percy-capybara.gemspec'

Style/UnneededPercentQ:
  Exclude:
    - 'percy-capybara.gemspec'

Style/RegexpLiteral:
  Exclude:
    - 'percy-capybara.gemspec'

Style/SymbolArray:
  Exclude:
    - 'spec/spec_helper.rb'

# Will be able to do this in >= v1.11
# RSpec/DescribedClass:
#   EnforcedStyle: explicit

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
percy-capybara-3.1.1 .rubocop.yml
percy-capybara-3.1.0 .rubocop.yml
percy-capybara-3.0.2 .rubocop.yml
percy-capybara-3.0.1 .rubocop.yml
percy-capybara-3.0.0 .rubocop.yml
percy-capybara-2.6.0 .rubocop.yml