renehernandez/ghost_rb

View on GitHub
.rubocop.yml

Summary

Maintainability
Test Coverage
AllCops:
  Exclude:
    - bin/**/*
    - tasks/**/*
  TargetRubyVersion: 2.4
Metrics/MethodLength:
  Max: 30
  CountComments: false
Metrics/AbcSize:
  Exclude:
    - spec/**/*
  Max: 20
Metrics/CyclomaticComplexity:
  Max: 10
Metrics/PerceivedComplexity:
  Max: 10
Metrics/BlockLength:
  Exclude: 
    - spec/**/*
Metrics/LineLength:
  Exclude:
    - spec/**/*
Style/FrozenStringLiteralComment:
  EnforcedStyle: always