chiark / gitweb /
Merge branch 'master' into 'master'
[fdroidserver.git] / .pylint-rcfile
1 [MASTER]
2
3 # Use multiple processes to speed up Pylint.
4 jobs=4
5
6 # Allow loading of arbitrary C extensions. Extensions are imported into the
7 # active Python interpreter and may run arbitrary code.
8 unsafe-load-any-extension=no
9
10
11 [MESSAGES CONTROL]
12
13 # Only show warnings with the listed confidence levels. Leave empty to show
14 # all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED
15 confidence=HIGH,INFERENCE
16
17 # Disable the message, report, category or checker with the given id(s). You
18 # can either give multiple identifiers separated by comma (,) or put this
19 # option multiple times (only on the command line, not in the configuration
20 # file where it should appear only once).You can also use "--disable=all" to
21 # disable everything first and then reenable specific checks. For example, if
22 # you want to run only the similarities checker, you can use "--disable=all
23 # --enable=similarities". If you want to run only the classes checker, but have
24 # no Warning level messages displayed, use"--disable=all --enable=classes
25 # --disable=W"
26 disable=invalid-name,missing-docstring,no-member
27
28
29 [MISCELLANEOUS]
30
31 # List of note tags to take in consideration, separated by a comma.
32 notes=FIXME,XXX,TODO
33
34
35 [BASIC]
36
37 # Good variable names which should always be accepted, separated by a comma
38 good-names=i,j,k,ex,Run,_,e,f,fp
39
40
41 [ELIF]
42
43 # Maximum number of nested blocks for function / method body
44 max-nested-blocks=5
45