Sha256: 80fd7611bb852ed320c485fe42cda15de3d3fcb71244d4d34d8b80965d31ff16

Contents?: true

Size: 830 Bytes

Versions: 2

Compression:

Stored size: 830 Bytes

Contents

# For all options see https://github.com/bbatsov/rubocop/tree/master/config

AllCops:
  DisplayCopNames: true
  Exclude:
    - vendor/**/*
    - .*/**
    - spec/fixtures/**/*
  TargetRubyVersion: 2.2.0

Style/StringLiterals:
  Enabled: false

Style/PercentLiteralDelimiters:
  Enabled: false

Style/Documentation:
  Enabled: false

Style/SignalException:
  EnforcedStyle: only_raise

Naming/FileName:
  Exclude:
    - Gemfile

Metrics/MethodLength:
  CountComments: false
  Max: 25

Metrics/BlockLength:
  Exclude:
    - spec/**/*

Metrics/AbcSize:
  Max: 25

# Don't require utf-8 encoding comment
Style/Encoding:
  Enabled: false

Metrics/LineLength:
  Max: 90

Metrics/ClassLength:
  Enabled: false

Layout/DotPosition:
  EnforcedStyle: trailing

# Allow class and message or instance raises
Style/RaiseArgs:
  Enabled: false

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
onfido-0.14.0 .rubocop.yml
onfido-0.13.0 .rubocop.yml