Commit 9c7a1d42 authored by Watchtek's avatar Watchtek
Browse files

Ignore pylint R0914

parent 1f5472f3
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
[MESSAGES CONTROL]
# Disable the messages 'too-many-instance-attributes' (R0902), 'too-many-arguments' (R0913), and 'too-many-positional-arguments' (R0917).
# disable=too-many-instance-attributes, too-many-arguments, too-many-positional-arguments
# Disable the messages 'too-many-instance-attributes' (R0902), 'too-many-arguments' (R0913), and 'too-many-positional-arguments' (R0917). + 'too-many-locals' (R0914)
# disable=too-many-instance-attributes, too-many-arguments, too-many-positional-arguments, too-many-locals
# Same with above
# Disable specific message IDs.
disable=R0902, R0913, R0915, R0917
disable=R0902, R0913, R0915, R0917, R0914

[FORMAT]
# Maximum number of characters on a single line.