checkr/checkr-ruby

View on GitHub
.rubocop.yml

Summary

Maintainability
Test Coverage
AllCops:
  Include:
    - 'config.ru'
    - 'Rakefile'
  Exclude:
    - 'Gemfile'
    - 'bin/**/*'
    - 'data/**/*'
    - 'db/schema.rb'
    - 'vendor/**/*'
  DisplayCopNames: true

Layout/EmptyLinesAroundClassBody:
  EnforcedStyle: empty_lines

Layout/MultilineMethodCallIndentation:
  EnforcedStyle: indented

Metrics/AbcSize:
  Max: 20

Metrics/ClassLength:
  Max: 150

Metrics/MethodLength:
  Max: 25

Metrics/LineLength:
  Max: 100

Metrics/BlockLength:
  Max: 100

Style/AndOr:
  EnforcedStyle: conditionals

Style/Documentation:
  Enabled: false

Style/SymbolArray:
  Enabled: false

Style/PercentLiteralDelimiters:
  PreferredDelimiters:
    '%i': '[]'
    '%w': '[]'
    '%W': '[]'

Style/StringLiterals:
  EnforcedStyle: single_quotes