Skip to content

Commit

Permalink
Deactivate Cyclomatic Complexity Checks
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
SebastianJL authored Aug 23, 2017
1 parent 82a6046 commit f2d452a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ engines:
enabled: true
radon:
enabled: true
checks:
Complexity:
enabled: false
config:
python_version: 3
ratings:
Expand Down

0 comments on commit f2d452a

Please sign in to comment.