diff options
author | Daniël van Noord <13665637+DanielNoord@users.noreply.github.com> | 2021-09-29 10:24:03 +0200 |
---|---|---|
committer | Daniël van Noord <13665637+DanielNoord@users.noreply.github.com> | 2021-09-29 14:17:31 +0200 |
commit | 118c91972562058d85d09cb64537b8c383556790 (patch) | |
tree | 80e7680810a3011a7dc3b48a3496c9363e70afcf /pylintrc | |
parent | 7c06fe8641293745417e3524577e668cc80710f5 (diff) | |
download | pylint-git-118c91972562058d85d09cb64537b8c383556790.tar.gz |
Add missing setting to ``pylintrc``
Diffstat (limited to 'pylintrc')
-rw-r--r-- | pylintrc | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 |