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

.rubocop.yml « gitlab-utils « gems - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7f0d48d1b2bc3ca1b0fe1d65dcc6b29788d30ddf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
inherit_from:
  - ../../.rubocop.yml

CodeReuse/ActiveRecord:
  Enabled: false

Gitlab/DocUrl:
  Enabled: false

Gitlab/NamespacedClass:
  Enabled: false

AllCops:
  TargetRubyVersion: 3.0

Naming/FileName:
  Exclude:
    - spec/**/*.rb
    - lib/gitlab/utils/all.rb

Lint/AmbiguousRegexpLiteral:
  Exclude:
    - spec/**/*.rb

RSpec/InstanceVariable:
  Exclude:
    - spec/**/*.rb

Lint/BinaryOperatorWithIdenticalOperands:
  Exclude:
    - spec/**/*.rb