Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.rubocop.yml « ruby - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b7c4dbe1165b8056e23af219265b5477a542faf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
inherit_from: .rubocop_todo.yml

AllCops:
  TargetRubyVersion: 2.5
  Exclude:
    - 'tmp/**/*'
    - 'vendor/**/*'
    - 'proto/**/*'
    # TODO stop ignoring gitlab-shell/ https://gitlab.com/gitlab-org/gitaly/issues/1592
    - 'gitlab-shell/**/*'

Style/NumericPredicate:
  Enabled: false

Style/RedundantBegin:
  Enabled: false

Naming/RescuedExceptionsVariableName:
  Enabled: false

Style/IfUnlessModifier:
  Enabled: false