xref: /openbmc/qemu/tests/qemu-iotests/pylintrc (revision 576dc22b)
1*576dc22bSJohn Snow[MESSAGES CONTROL]
2*576dc22bSJohn Snow
3*576dc22bSJohn Snow# Disable the message, report, category or checker with the given id(s). You
4*576dc22bSJohn Snow# can either give multiple identifiers separated by comma (,) or put this
5*576dc22bSJohn Snow# option multiple times (only on the command line, not in the configuration
6*576dc22bSJohn Snow# file where it should appear only once). You can also use "--disable=all" to
7*576dc22bSJohn Snow# disable everything first and then reenable specific checks. For example, if
8*576dc22bSJohn Snow# you want to run only the similarities checker, you can use "--disable=all
9*576dc22bSJohn Snow# --enable=similarities". If you want to run only the classes checker, but have
10*576dc22bSJohn Snow# no Warning level messages displayed, use "--disable=all --enable=classes
11*576dc22bSJohn Snow# --disable=W".
12*576dc22bSJohn Snowdisable=invalid-name,
13*576dc22bSJohn Snow        no-else-return,
14*576dc22bSJohn Snow        too-few-public-methods,
15*576dc22bSJohn Snow        too-many-arguments,
16*576dc22bSJohn Snow        too-many-branches,
17*576dc22bSJohn Snow        too-many-lines,
18*576dc22bSJohn Snow        too-many-locals,
19*576dc22bSJohn Snow        too-many-public-methods,
20*576dc22bSJohn Snow        # These are temporary, and should be removed:
21*576dc22bSJohn Snow        line-too-long,
22*576dc22bSJohn Snow        missing-docstring,
23