From 96e13dd86b6777c86e199e9a98cd7182f1385353 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Sun, 4 Aug 2019 21:09:42 +0200 Subject: Configured CodeClimate I've overridden the default configuration in such a way that the code as it is now passes all the code smells checks. Especially the default code complexity threshold is extremely low. --- .codeclimate.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to '.codeclimate.yml') diff --git a/.codeclimate.yml b/.codeclimate.yml index 907c00b..077382c 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -15,3 +15,13 @@ ratings: - "**.py" exclude_paths: - tests/**/* +checks: + argument-count: + config: + threshold: 5 + file-lines: + config: + threshold: 1000 + method-complexity: + config: + threshold: 17 -- cgit v1.2.1