summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorDaniël van Noord <13665637+DanielNoord@users.noreply.github.com>2021-09-29 10:24:03 +0200
committerDaniël van Noord <13665637+DanielNoord@users.noreply.github.com>2021-09-29 14:17:31 +0200
commit118c91972562058d85d09cb64537b8c383556790 (patch)
tree80e7680810a3011a7dc3b48a3496c9363e70afcf /pylintrc
parent7c06fe8641293745417e3524577e668cc80710f5 (diff)
downloadpylint-git-118c91972562058d85d09cb64537b8c383556790.tar.gz
Add missing setting to ``pylintrc``
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc6
1 files changed, 5 insertions, 1 deletions
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