blob: 7174f3b15af62999cfa08aa2a4302ca315d5117a [file] [log] [blame]
Tim Emiolae2860c52015-01-16 02:58:41 -08001# This is the configuration used to check the rubocop source code.
2
3inherit_from: .rubocop_todo.yml
4
5AllCops:
6 Exclude:
7 - 'bin/apis/**/*'
Ken Payson5a2c9182016-07-26 17:15:08 -07008 - 'bin/math_pb.rb'
9 - 'bin/math_services_pb.rb'
yang-gaea13f12016-02-19 11:05:28 -080010 - 'pb/grpc/health/v1/*'
Tim Emiolaf4ee9612015-08-14 18:47:16 -070011 - 'pb/test/**/*'
Alexander Polcyn4e606752017-03-19 23:32:54 -070012 - 'end2end/lib/*'
murgatroid993c09a642015-10-14 17:25:49 -070013
14Metrics/CyclomaticComplexity:
murgatroid9959dfee82016-05-03 11:33:25 -070015 Max: 9
murgatroid993c09a642015-10-14 17:25:49 -070016
17Metrics/PerceivedComplexity:
murgatroid9959dfee82016-05-03 11:33:25 -070018 Max: 9
murgatroid99d48d84d2016-03-09 11:10:20 -080019
20Metrics/ClassLength:
21 Max: 250