bstopp/aws_session_token

View on GitHub
.rubocop.yml

Summary

Maintainability
Test Coverage

AllCops:
  TargetRubyVersion: 2.3
  Exclude:
    - 'pkg/**/*'
    - 'vendor/**/*'
    - '*.gemspec'

Layout/EmptyLinesAroundBlockBody:
  Enabled: false

Layout/EmptyLinesAroundClassBody:
  Enabled: false

Layout/EmptyLinesAroundModuleBody:
  Enabled: false

Metrics/BlockLength:
  CountComments: false  # count full line comments?
  Max: 25
  Exclude:
    - 'Rakefile'
    - 'spec/**/*.rb'

Metrics/LineLength:
  Max: 120

Metrics/MethodLength:
  Max: 15

Style/FormatStringToken:
  Enabled: false