Tim Emiola | e2860c5 | 2015-01-16 02:58:41 -0800 | [diff] [blame] | 1 | # This is the configuration used to check the rubocop source code. |
2 | |||||
3 | inherit_from: .rubocop_todo.yml | ||||
4 | |||||
5 | AllCops: | ||||
6 | Exclude: | ||||
7 | - 'bin/apis/**/*' | ||||
Ken Payson | 5a2c918 | 2016-07-26 17:15:08 -0700 | [diff] [blame] | 8 | - 'bin/math_pb.rb' |
9 | - 'bin/math_services_pb.rb' | ||||
yang-g | aea13f1 | 2016-02-19 11:05:28 -0800 | [diff] [blame] | 10 | - 'pb/grpc/health/v1/*' |
Tim Emiola | f4ee961 | 2015-08-14 18:47:16 -0700 | [diff] [blame] | 11 | - 'pb/test/**/*' |
Alexander Polcyn | 4e60675 | 2017-03-19 23:32:54 -0700 | [diff] [blame] | 12 | - 'end2end/lib/*' |
murgatroid99 | 3c09a64 | 2015-10-14 17:25:49 -0700 | [diff] [blame] | 13 | |
14 | Metrics/CyclomaticComplexity: | ||||
murgatroid99 | 59dfee8 | 2016-05-03 11:33:25 -0700 | [diff] [blame] | 15 | Max: 9 |
murgatroid99 | 3c09a64 | 2015-10-14 17:25:49 -0700 | [diff] [blame] | 16 | |
17 | Metrics/PerceivedComplexity: | ||||
murgatroid99 | 59dfee8 | 2016-05-03 11:33:25 -0700 | [diff] [blame] | 18 | Max: 9 |
murgatroid99 | d48d84d | 2016-03-09 11:10:20 -0800 | [diff] [blame] | 19 | |
20 | Metrics/ClassLength: | ||||
21 | Max: 250 |