1[MESSAGES CONTROL]
2
3disable=
4    relative-import,
5    too-few-public-methods,
6    too-many-instance-attributes,
7    fixme,no-self-use,
8    duplicate-code
9
10[MASTER]
11
12init-hook='import sys, os; sys.path.append(os.getcwd() + '/atest')'
13
14[BASIC]
15
16# Naming hint for method names
17method-name-hint=(([a-z][a-z0-9_]{2,50})|(_[a-z0-9_]*))$
18
19# Regular expression matching correct method names
20method-rgx=(([a-z][a-z0-9_]{2,50})|(_[a-z0-9_]*))$
21
22# Good variable names which should always be accepted, separated by a comma
23good-names=e, f, i, j
24
25[DESIGN]
26
27# Maximum number of arguments for function / method
28max-args=6
29
30# Maximum number of return / yield for function / method body
31max-returns=10
32
33# Maximum number of public methods for a class (see R0904).
34max-public-methods=40
35
36[SIMILARITIES]
37
38# Ignore similar imports.
39ignore-imports=y
40