-
Notifications
You must be signed in to change notification settings - Fork 32
/
.pylintrc
54 lines (46 loc) · 1.14 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
44
45
46
47
48
49
50
51
52
53
54
[MASTER]
profile=no
persistent=no
[MESSAGES CONTROL]
disable-checker=Design,Similarities
disable=invalid-name,
missing-docstring,
duplicate-code,
too-few-public-methods,
bad-continuation,
no-self-use,
fixme,
no-absolute-import,
superfluous-parens,
too-many-ancestors,
too-many-arguments,
too-many-statements,
too-many-locals,
too-many-instance-attributes,
too-many-branches,
unnecessary-lambda-assignment,
unnecessary-pass,
consider-using-f-string,
useless-object-inheritance,
super-with-arguments,
no-member,
# Compatibility with pylint from older Debian releases
unrecognized-option,
useless-option-value,
[BASIC]
bad-functions=apply,input
[TYPECHECK]
ignored-classes=RegisterMap,FakeRegisterMap
[VARIABLES]
dummy-variables-rgx=_
[CLASSES]
defining-attr-methods=__init__,
__new__,
setUp,
setup_method,
[MISCELLANEOUS]
notes=FIXME,XXX,TODO
[FORMAT]
max-line-length=85
indent-string=' '
indent-after-paren=3