From adfbd8e93d678b064747118c6458817ae2fc8575 Mon Sep 17 00:00:00 2001 From: Daniel Tomlinson Date: Sat, 25 Sep 2021 22:15:46 +0100 Subject: [PATCH] updating prospector.yaml --- prospector.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/prospector.yaml b/prospector.yaml index fbfeef5..5c944a1 100644 --- a/prospector.yaml +++ b/prospector.yaml @@ -15,6 +15,10 @@ pylint: - missing-module-docstring - logging-fstring-interpolation - missing-function-docstring + - abstract-method + - missing-class-docstring + - super-init-not-called + - arguments-differ enable: options: @@ -62,7 +66,12 @@ pep257: - D413 - D406 - D103 + - D101 # missing docstring in public class + - D102 # missing docstring in public method +pyflakes: + disable: + - F401 # unused import dodgy: run: true