distil/jserializer

View on GitHub
.rubocop.yml

Summary

Maintainability
Test Coverage
Style/StringLiterals:
  Enabled: false

Style/PercentLiteralDelimiters:
  Enabled: false

Style/UnneededPercentQ:
  Enabled: false

Style/Documentation:
  Exclude:
    - 'test/**/*'

Style/SymbolArray:
  Enabled: false

Style/RedundantSelf:
  Enabled: false

Metrics/ClassLength:
  Max: 100
  Exclude:
    - 'test/**/*'

Metrics/BlockLength:
  Max: 25
  Exclude:
    - 'test/**/*'

Metrics/ParameterLists:
  CountKeywordArgs: false

Metrics/MethodLength:
  Max: 15