From b8507c90ec02582dd00ca40b5a89836f57b2941e Mon Sep 17 00:00:00 2001 From: Mike Place Date: Mon, 9 Oct 2017 11:31:54 -0600 Subject: [PATCH] Lower the radon threshold for CodeClimate Lower to 'D' which is cyclomatic complexity "moderate" or above. More info on grading: http://radon.readthedocs.io/en/latest/commandline.html --- .codeclimate.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index 171bc4fd48c2..b9423ab4d13e 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -1,5 +1,11 @@ languages: - Ruby: false - JavaScript: false - Python: true - PHP: false \ No newline at end of file + Ruby: false + JavaScript: false + Python: true + PHP: false + +engines: + radon: + enabled: true + config: + threshold: "D"