aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ruby/.rubocop.yml
blob: dd57ab60828bc0bf6902ae6ef571992feb4f957d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# This is the configuration used to check the rubocop source code.

inherit_from: .rubocop_todo.yml

AllCops:
  Exclude:
    - 'bin/apis/**/*'
    - 'bin/math.rb'
    - 'bin/math_services.rb'
    - 'pb/grpc/health/v1alpha/*'
    - 'pb/test/**/*'

Metrics/CyclomaticComplexity:
  Max: 8

Metrics/PerceivedComplexity:
  Max: 8