Merge remote-tracking branch 'qemu-project/master'
[qemu/ar7.git] / scripts / qapi / pylintrc
blobc028a1f9f519534be04787f809abb5b5d53fb981
1 [MASTER]
3 [MESSAGES CONTROL]
5 # Disable the message, report, category or checker with the given id(s). You
6 # can either give multiple identifiers separated by comma (,) or put this
7 # option multiple times (only on the command line, not in the configuration
8 # file where it should appear only once). You can also use "--disable=all" to
9 # disable everything first and then reenable specific checks. For example, if
10 # you want to run only the similarities checker, you can use "--disable=all
11 # --enable=similarities". If you want to run only the classes checker, but have
12 # no Warning level messages displayed, use "--disable=all --enable=classes
13 # --disable=W".
14 disable=consider-using-f-string,
15         fixme,
16         missing-docstring,
17         too-many-arguments,
18         too-many-branches,
19         too-many-instance-attributes,
20         too-many-statements,
21         useless-option-value,
23 [REPORTS]
25 [REFACTORING]
27 [MISCELLANEOUS]
29 [LOGGING]
31 [BASIC]
33 # Good variable names regexes, separated by a comma. If names match any regex,
34 # they will always be accepted.
36 # Suppress complaints about short names.  PEP-8 is cool with them,
37 # and so are we.
38 good-names-rgxs=^[_a-z][_a-z0-9]?$
40 [VARIABLES]
42 [STRING]
44 [SPELLING]
46 [FORMAT]
48 [SIMILARITIES]
50 # Ignore import statements themselves when computing similarities.
51 ignore-imports=yes
53 [TYPECHECK]
55 [CLASSES]
57 [IMPORTS]
59 [DESIGN]
61 [EXCEPTIONS]