rike422/rounders

View on GitHub
.rubocop.yml

Summary

Maintainability
Test Coverage

AllCops:
  TargetRubyVersion: 2.3
  Exclude:
     - 'vendor/**/*'
     - 'spec/fixtures/**/*'
     - 'tmp/**/*'
     - 'lib/rounders/generators/**/templates/**/*'
##################### Metrics ##################################

Metrics/LineLength:
  Max: 130

Metrics/ClassLength:
  CountComments: false
  Max: 150

Metrics/LineLength:
  Max: 150

##################### Style ##################################

# Use nested module/class definitions instead of compact style.
# NG: module Gem::Search
Style/ClassAndModuleChildren:
  Enabled: false

Style/AsciiComments:
  Enabled: false

Style/Documentation:
  Enabled: false

Style/DotPosition:
  EnforcedStyle: trailing

Style/FrozenStringLiteralComment:
  Enabled: false

Metrics/BlockLength:
  Exclude:
    - 'rounders.gemspec'
    - 'spec/**/*'

Metrics/MethodLength:
  CountComments: false  # count full line comments?
  Max: 30