Commit fd39ae72 authored by JunHyung An's avatar JunHyung An
Browse files

pylint ignore R0902, R0913, R0917 with max-line-length

parent 15b4b755
Loading
Loading
Loading
Loading
Loading

.pylintrc

0 → 100644
+10 −0
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
# Same with above
# Disable specific message IDs.
disable=R0902, R0913, R0917

[FORMAT]
# Maximum number of characters on a single line.
max-line-length=250