liyujie
2025-08-28 b3810562527858a3b3d98ffa6e9c9c5b0f4a9a8e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# This is the configuration used to check the rubocop source code.
 
inherit_from: .rubocop_todo.yml
 
AllCops:
  Exclude:
    - 'bin/apis/**/*'
    - 'bin/math_pb.rb'
    - 'bin/math_services_pb.rb'
    - 'pb/grpc/health/v1/*'
    - 'pb/test/**/*'
    - 'end2end/lib/*'
 
Metrics/CyclomaticComplexity:
  Max: 9
 
Metrics/PerceivedComplexity:
  Max: 9
 
Metrics/ClassLength:
  Max: 250