Codebase list ruby-gitlab / upstream/4.14.1 .rubocop.yml
upstream/4.14.1

Tree @upstream/4.14.1 (Download .tar.gz)

.rubocop.yml @upstream/4.14.1

9962458
 
ec6860b
87adcfe
 
9962458
87adcfe
ec6860b
87adcfe
 
ec6860b
 
 
 
9962458
ec6860b
9962458
 
 
 
ec6860b
9962458
ec6860b
9962458
ec6860b
 
87adcfe
 
ec6860b
87adcfe
 
 
 
 
 
 
 
---
inherit_from: .rubocop_todo.yml

require: rubocop-performance

AllCops:
  TargetRubyVersion: 2.5

Layout/LineLength:
  Max: 123
  Exclude:
    - 'lib/gitlab/client/*'
    - 'spec/**/*'

Metrics/BlockLength:
  Exclude:
    - 'spec/**/*'

Style/Documentation:
  Enabled: false

Style/ClassAndModuleChildren:
  Exclude:
    - 'lib/gitlab/*'
    - 'lib/gitlab/client/*'

Lint/NonDeterministicRequireOrder:
  Enabled: false

Style/HashEachMethods:
  Enabled: true

Style/HashTransformKeys:
  Enabled: true

Style/HashTransformValues:
  Enabled: true