Codebase list ruby-gitlab / fef51a1f-b59e-423c-8393-55e5199e8670/main .rubocop.yml
fef51a1f-b59e-423c-8393-55e5199e8670/main

Tree @fef51a1f-b59e-423c-8393-55e5199e8670/main (Download .tar.gz)

.rubocop.yml @fef51a1f-b59e-423c-8393-55e5199e8670/mainraw · 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/**/*'

Style/Documentation:
  Enabled: false

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

Lint/NonDeterministicRequireOrder:
  Enabled: false