Codebase list ruby-gitlab / 95797632-ae5e-480c-891f-916730b2eac0/main .rubocop.yml
95797632-ae5e-480c-891f-916730b2eac0/main

Tree @95797632-ae5e-480c-891f-916730b2eac0/main (Download .tar.gz)

.rubocop.yml @95797632-ae5e-480c-891f-916730b2eac0/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