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
| [MESSAGES CONTROL]
|
| disable=
| relative-import,
| too-few-public-methods,
| too-many-instance-attributes,
| fixme,no-self-use,
| duplicate-code
|
| [MASTER]
|
| init-hook='import sys, os; sys.path.append(os.getcwd() + '/atest')'
|
| [BASIC]
|
| # Naming hint for method names
| method-name-hint=(([a-z][a-z0-9_]{2,50})|(_[a-z0-9_]*))$
|
| # Regular expression matching correct method names
| method-rgx=(([a-z][a-z0-9_]{2,50})|(_[a-z0-9_]*))$
|
| # Good variable names which should always be accepted, separated by a comma
| good-names=e, f, i, j
|
| [DESIGN]
|
| # Maximum number of arguments for function / method
| max-args=6
|
| # Maximum number of return / yield for function / method body
| max-returns=10
|
| # Maximum number of public methods for a class (see R0904).
| max-public-methods=40
|
| [SIMILARITIES]
|
| # Ignore similar imports.
| ignore-imports=y
|
|