omniauth/omniauth-identity

View on GitHub
.rubocop.yml

Summary

Maintainability
Test Coverage
inherit_from: .rubocop_todo.yml

require:
  - 'rubocop-md'
  - 'rubocop-minitest'
  - 'rubocop-packaging'
  - 'rubocop-performance'
  - 'rubocop-rake'
  - 'rubocop-rspec'
  - 'rubocop-sequel'

AllCops:
  NewCops: enable
  DisplayCopNames: true # Display the name of the failing cops
  Exclude:
    - 'gemfiles/vendor/**/*'
    - 'vendor/**/*'

Metrics/BlockLength:
  IgnoredMethods:
    - context
    - describe
    - it
    - shared_context
    - shared_examples
    - shared_examples_for
    - namespace
    - draw

Sequel/SaveChanges:
  Enabled: false

Lint/UselessMethodDefinition:
  Enabled: false

RSpec/FilePath:
  Include:
    - spec
    - spec_orms

RSpec/BeforeAfterAll:
  Enabled: false