aboutsummaryrefslogtreecommitdiff
blob: cd5b31ee9699354d78de8e2d6e4b03938e7dadc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[MESSAGES CONTROL]
# Disable the message, report, category or checker with the given id(s). You
# can either give multiple identifier separated by comma (,) or put this option
# multiple times (only on the command line, not in the configuration file where
# it should appear only once).
disable=
	missing-docstring,
	too-many-lines,
	too-many-branches,
	too-many-statements,
	too-few-public-methods,
	too-many-instance-attributes,
	too-many-public-methods,
	too-many-locals,
	too-many-arguments,
	locally-enabled,
	locally-disabled,
	fixme,
	bad-continuation,
	invalid-name,

[REPORTS]
reports=no

[FORMAT]
max-line-length=80
indent-string='\t'

[SIMILARITIES]
min-similarity-lines=20

[VARIABLES]
dummy-variables-rgx=_

[DESIGN]
max-parents=10