From eb64347eee13fa0d0bc06730d2a6aa370d6f9b52 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sun, 30 Sep 2018 10:36:49 +0000 Subject: [PATCH] .codeclimate.yml: Update thresholds for maintainability Signed-off-by: Niels Thykier --- .codeclimate.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .codeclimate.yml diff --git a/.codeclimate.yml b/.codeclimate.yml new file mode 100644 index 0000000..d7279b0 --- /dev/null +++ b/.codeclimate.yml @@ -0,0 +1,20 @@ +version: "2" # required to adjust maintainability checks +checks: + argument-count: + config: + threshold: 6 + complex-logic: + config: + threshold: 9 + file-lines: + config: + threshold: 500 + method-complexity: + config: + threshold: 9 + method-count: + config: + threshold: 40 + method-lines: + config: + threshold: 50