Skip to content

Commit 118c919

Browse files
committed
Add missing setting to pylintrc
1 parent 7c06fe8 commit 118c919

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

pylintrc

+5-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ load-plugins=
2727
# Use multiple processes to speed up Pylint.
2828
jobs=1
2929

30+
# When enabled, pylint would attempt to guess common misconfiguration and emit
31+
# user-friendly hints instead of false-positive error messages.
32+
suggestion-mode=yes
33+
3034
# Allow loading of arbitrary C extensions. Extensions are imported into the
3135
# active Python interpreter and may run arbitrary code.
3236
unsafe-load-any-extension=no
@@ -272,7 +276,7 @@ ignore-mixin-members=yes
272276

273277
# List of module names for which member attributes should not be checked
274278
# (useful for modules/projects where namespaces are manipulated during runtime
275-
# and thus existing member attributes cannot be deduced by static analysis
279+
# and thus existing member attributes cannot be deduced by static analysis)
276280
ignored-modules=
277281

278282
# List of classes names for which member attributes should not be checked

0 commit comments

Comments
 (0)