From 118c91972562058d85d09cb64537b8c383556790 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20van=20Noord?= <13665637+DanielNoord@users.noreply.github.com> Date: Wed, 29 Sep 2021 10:24:03 +0200 Subject: Add missing setting to ``pylintrc`` --- pylintrc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'pylintrc') diff --git a/pylintrc b/pylintrc index 6acebfbfb..376fb828e 100644 --- a/pylintrc +++ b/pylintrc @@ -27,6 +27,10 @@ load-plugins= # Use multiple processes to speed up Pylint. jobs=1 +# When enabled, pylint would attempt to guess common misconfiguration and emit +# user-friendly hints instead of false-positive error messages. +suggestion-mode=yes + # Allow loading of arbitrary C extensions. Extensions are imported into the # active Python interpreter and may run arbitrary code. unsafe-load-any-extension=no @@ -272,7 +276,7 @@ ignore-mixin-members=yes # List of module names for which member attributes should not be checked # (useful for modules/projects where namespaces are manipulated during runtime -# and thus existing member attributes cannot be deduced by static analysis +# and thus existing member attributes cannot be deduced by static analysis) ignored-modules= # List of classes names for which member attributes should not be checked -- cgit v1.2.1