From f2d452a5349fa24df53523c93c5f8fcf45ee53eb Mon Sep 17 00:00:00 2001 From: SebastianJL Date: Wed, 23 Aug 2017 17:52:38 +0200 Subject: [PATCH] Deactivate Cyclomatic Complexity Checks Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks. --- .codeclimate.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.codeclimate.yml b/.codeclimate.yml index 82d7ceb..89f42ed 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -9,6 +9,9 @@ engines: enabled: true radon: enabled: true + checks: + Complexity: + enabled: false config: python_version: 3 ratings: