blob: dd57ab60828bc0bf6902ae6ef571992feb4f957d [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/**/*'
Tim Emiolae2860c52015-01-16 02:58:41 -08008 - 'bin/math.rb'
9 - 'bin/math_services.rb'
Tim Emiola975d0cb2015-08-14 10:44:17 -070010 - 'pb/grpc/health/v1alpha/*'
Tim Emiolaf4ee9612015-08-14 18:47:16 -070011 - 'pb/test/**/*'
murgatroid993c09a642015-10-14 17:25:49 -070012
13Metrics/CyclomaticComplexity:
14 Max: 8
15
16Metrics/PerceivedComplexity:
murgatroid99aad1a342015-10-14 17:56:02 -070017 Max: 8