1+ [MASTER]
2+ ignore = ,input
3+ persistent = yes
4+ load-plugins = pylint_quotes
5+
6+ [MESSAGES CONTROL]
7+ disable =
8+ missing-docstring,
9+ fixme,
10+ duplicate-code,
11+ no-member,
12+ parse-error,
13+ bad-continuation,
14+ too-few-public-methods,
15+ global-statement,
16+ cyclic-import,
17+ locally-disabled,
18+ file-ignored,
19+ no-else-return,
20+ unnecessary-lambda
21+
22+ [REPORTS]
23+ output-format = text
24+ files-output = no
25+ reports = no
26+
27+ [FORMAT]
28+ max-line-length = 120
29+ max-statement-lines = 75
30+ single-line-if-stmt = no
31+ no-space-check = trailing-comma,dict-separator
32+ max-module-lines = 1000
33+ indent-string = ' '
34+ string-quote =single-avoid-escape
35+ triple-quote =single
36+ docstring-quote =double
37+
38+ [MISCELLANEOUS]
39+ notes = FIXME,XXX,TODO
40+
41+ [SIMILARITIES]
42+ min-similarity-lines = 4
43+ ignore-comments = yes
44+ ignore-docstrings = yes
45+ ignore-imports = no
46+
47+ [BASIC]
48+ # Regular expression which should only match correct module names
49+ module-rgx =(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
50+
51+ # Regular expression which should only match correct module level names
52+ const-rgx =(([A-Za-z_][A-Za-z1-9_]*)|(__.*__))$
53+
54+ # Regular expression which should only match correct class names
55+ class-rgx =[A-Z_][a-zA-Z0-9_]+$
56+
57+ # Regular expression which should only match correct function names
58+ function-rgx =[a-z_][a-z0-9_]{2,35}$
59+
60+ # Regular expression which should only match correct method names
61+ method-rgx =[a-z_][a-z0-9_]{2,30}$
62+
63+ # Regular expression which should only match correct instance attribute names
64+ attr-rgx =[a-z_][a-z0-9_]{2,30}$
65+
66+ # Regular expression which should only match correct argument names
67+ argument-rgx =[a-z_][a-z0-9_]{0,30}$
68+
69+ # Regular expression which should only match correct variable names
70+ variable-rgx =[a-z_][a-z0-9_]{0,30}$
71+
72+ # Regular expression which should only match correct list comprehension /
73+ # generator expression variable names
74+ inlinevar-rgx =[A-Za-z_][A-Za-z0-9_]*$
75+
76+ # Good variable names which should always be accepted, separated by a comma
77+ good-names =logger,id,ID
78+
79+ # Bad variable names which should always be refused, separated by a comma
80+ bad-names =foo,bar,baz,toto,tutu,tata
81+
82+ # List of builtins function names that should not be used, separated by a comma
83+ bad-functions =apply,input
84+
85+ [DESIGN]
86+ max-args = 10
87+ ignored-argument-names = _.*
88+ max-locals = 20
89+ max-returns = 6
90+ max-branches = 15
91+ max-statements = 55
92+ max-parents = 7
93+ max-attributes = 10
94+ min-public-methods = 2
95+ max-public-methods = 20
96+
97+ [EXCEPTIONS]
98+ overgeneral-exceptions = builtins.Exception
0 commit comments