tsurupin/portfolio

View on GitHub
.rubocop.yml

Summary

Maintainability
Test Coverage
AllCops:
  Include:
    - '**/Rakefile'
    - '**/config.ru'
  Exclude:
    - 'bin/**/*'
    - 'spec/**/*'
    - 'db/**/*'
    - 'config/**/*'
    - 'script/**/*'
    - !ruby/regexp /old_and_unused\.rb$/
    - '**/Rakefile'
    - '**/config.ru'
  TargetRubyVersion: 2.3
Style/PerlBackrefs:
  AutoCorrect: true
Rails:
  Enabled: true
Style/ClassAndModuleChildren:
  EnforcedStyle: compact
Documentation:
  Enabled: false
LineLength:
  Max: 120
AsciiComments:
  Enabled: false
Metrics/AbcSize:
  Enabled: true
  Max: 20
MethodLength:
  CountComments: false
  Max: 15