hw/timer/sse-counter: Model the SSE Subsystem System Counter
[qemu/ar7.git] / python / qemu / pylintrc
blob3f69205000d46b5630678315ffd9a80d368f563a
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=too-many-arguments,
15         too-many-instance-attributes,
16         too-many-public-methods,
18 [REPORTS]
20 [REFACTORING]
22 [MISCELLANEOUS]
24 [LOGGING]
26 [BASIC]
28 # Good variable names which should always be accepted, separated by a comma.
29 good-names=i,
30            j,
31            k,
32            ex,
33            Run,
34            _,
35            fd,
36            c,
37 [VARIABLES]
39 [STRING]
41 [SPELLING]
43 [FORMAT]
45 [SIMILARITIES]
47 # Ignore imports when computing similarities.
48 ignore-imports=yes
50 [TYPECHECK]
52 [CLASSES]
54 [IMPORTS]
56 [DESIGN]
58 [EXCEPTIONS]