Codebase list ruby-gitlab / upstream/4.17.0+git20201231.3df8f13 .rubocop.yml
upstream/4.17.0+git20201231.3df8f13

Tree @upstream/4.17.0+git20201231.3df8f13 (Download .tar.gz)

.rubocop.yml @upstream/4.17.0+git20201231.3df8f13raw · history · blame

---
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