Codebase list ruby-gitlab / c26fd083-88dd-44d0-9488-e8c258f906aa/main .rubocop.yml
c26fd083-88dd-44d0-9488-e8c258f906aa/main

Tree @c26fd083-88dd-44d0-9488-e8c258f906aa/main (Download .tar.gz)

.rubocop.yml @c26fd083-88dd-44d0-9488-e8c258f906aa/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