aboutsummaryrefslogtreecommitdiff
blob: b86319bf742197837ba9e2602a4332a663ea5555 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[MASTER]
# List of plugins (as comma separated values of python modules names) to load,
# usually to register additional checkers.
load-plugins=
	pylint.extensions.bad_builtin,
	pylint.extensions.check_elif,
	pylint.extensions.docstyle,
	pylint.extensions.emptystring,
	pylint.extensions.overlapping_exceptions,
	pylint.extensions.redefined_variable_type,

jobs=0

[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=
	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,
	invalid-name,

[REPORTS]
reports=no
score=no

[FORMAT]
max-line-length = 100
indent-string = '    '

[BASIC]
bad-functions=
	exit,
	filter,
	input,
	map,
	quit,

[SIMILARITIES]
min-similarity-lines=20

[VARIABLES]
dummy-variables-rgx=_

[DESIGN]
max-parents=10

[IMPORTS]
deprecated-modules=
	mox,
	optparse,