Codebase list ruby-gitlab / 66c2af0b-dd3b-4672-91a5-b85c58986b05/upstream .rubocop.yml
66c2af0b-dd3b-4672-91a5-b85c58986b05/upstream

Tree @66c2af0b-dd3b-4672-91a5-b85c58986b05/upstream (Download .tar.gz)

.rubocop.yml @66c2af0b-dd3b-4672-91a5-b85c58986b05/upstream

9962458
 
ec6860b
87adcfe
 
9962458
87adcfe
67eea39
ec6860b
87adcfe
 
ec6860b
 
 
 
9962458
ec6860b
9962458
 
3625f30
 
 
9962458
 
ec6860b
9962458
ec6860b
9962458
ec6860b
 
87adcfe
 
---
inherit_from: .rubocop_todo.yml

require: rubocop-performance

AllCops:
  TargetRubyVersion: 2.5
  NewCops: enable

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

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

Metrics/ParameterLists:
  MaxOptionalParameters: 4

Style/Documentation:
  Enabled: false

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

Lint/NonDeterministicRequireOrder:
  Enabled: false