forked from Samsung/Universum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pylintrc
43 lines (38 loc) · 1.06 KB
/
pylintrc
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
[MASTER]
ignore = thirdparty,doc
known-third-party = P4
extension-pkg-whitelist=lxml.etree
[MESSAGES CONTROL]
disable = missing-docstring,
fixme,
too-many-instance-attributes,
too-many-branches,
too-many-arguments,
too-few-public-methods,
too-many-statements,
global-statement,
broad-except,
undefined-variable,
unused-argument,
unused-import,
no-name-in-module,
no-member,
unsupported-assignment-operation,
super-init-not-called,
wildcard-import,
use-dict-literal
[BASIC]
no-docstring-rgx = .*
variable-rgx = [a-z_][a-z0-9_]{0,30}$
const-rgx = (([a-z_][a-z0-9_]*)|([A-Z_][A-Z0-9_]*)|(__.*__))$
attr-rgx = [a-z_][a-z0-9_]{1,30}$
function-rgx = [a-z_][a-z0-9_]*$
class-const-rgx = (([a-z_][a-z0-9_]*)|([A-Z_][A-Z0-9_]*)|(__.*__))$
good-names = P4Exception, p4
max-parents = 10
[FORMAT]
max-line-length = 130
[SIMILARITIES]
ignore-imports=yes
[TYPECHECK]
signature-mutators=universum.analyzers.utils.analyzer