From 5bf4d64d9707a51e857c8d6fc644d387ce579ae7 Mon Sep 17 00:00:00 2001 From: "arnaud.morvan@camptocamp.com" Date: Tue, 27 Oct 2020 11:13:45 +0100 Subject: [PATCH] Add default .prospector.yaml --- .prospector.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .prospector.yaml diff --git a/.prospector.yaml b/.prospector.yaml new file mode 100644 index 000000000..5d708c6ba --- /dev/null +++ b/.prospector.yaml @@ -0,0 +1,22 @@ +--- +strictness: veryhigh + +pep8: + options: + max-line-length: 110 + disable: + - E203 + +pylint: + options: + max-line-length: 110 + disable: + - too-many-locals + - too-many-statements + - too-many-branches + +mccabe: + run: false + +mypy: + run: true