roidrage/redis-session-store

View on GitHub
.rubocop.yml

Summary

Maintainability
Test Coverage
inherit_from: .rubocop_todo.yml

require:
  - rubocop-rake
  - rubocop-rspec

AllCops:
  DisplayCopNames: true
  Exclude:
    - 'Rakefile'
    - 'vendor/**/*'

Naming/FileName:
  Enabled: false

Style/DoubleNegation:
  Enabled: false

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

Layout/LineLength:
  Max: 100

Metrics/ClassLength:
  Max: 140

RSpec/MultipleExpectations:
  Max: 3

Security/MarshalLoad:
  Enabled: false

Style/FrozenStringLiteralComment:
  Enabled: false

Style/PercentLiteralDelimiters:
  Enabled: false

Style/SafeNavigation:
  Enabled: false

Style/YodaCondition:
  # temporary work around for rubocop bug 'An error occurred while Style/YodaCondition...' (v0.49.1)
  Exclude:
    - 'spec/redis_session_store_spec.rb'