Merge remote-tracking branch 'remotes/nvme/tags/nvme-fixes-20210407-pull-request...
[qemu/ar7.git] / tests / qemu-iotests / pylintrc
blob7a6c0a947400ef746ae2ad568f45cad8db056ecf
1 [MESSAGES CONTROL]
3 # Disable the message, report, category or checker with the given id(s). You
4 # can either give multiple identifiers separated by comma (,) or put this
5 # option multiple times (only on the command line, not in the configuration
6 # file where it should appear only once). You can also use "--disable=all" to
7 # disable everything first and then reenable specific checks. For example, if
8 # you want to run only the similarities checker, you can use "--disable=all
9 # --enable=similarities". If you want to run only the classes checker, but have
10 # no Warning level messages displayed, use "--disable=all --enable=classes
11 # --disable=W".
12 disable=invalid-name,
13         no-else-return,
14         too-few-public-methods,
15         too-many-arguments,
16         too-many-branches,
17         too-many-lines,
18         too-many-locals,
19         too-many-public-methods,
20         # pylint warns about Optional[] etc. as unsubscriptable in 3.9
21         unsubscriptable-object,
22         # These are temporary, and should be removed:
23         missing-docstring,
24         too-many-return-statements,
25         too-many-statements
27 [FORMAT]
29 # Maximum number of characters on a single line.
30 max-line-length=79