-
Notifications
You must be signed in to change notification settings - Fork 0
/
pylintrc
46 lines (33 loc) · 934 Bytes
/
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
[MASTER]
[BASIC]
# Good variable names which should always be accepted, separated by a comma.
good-names=i,
j,
k,
x,
y,
z,
_,
ax,
aa,
df,
go,
l1
[DESIGN]
# Maximum number of arguments for function / method.
max-args=500
# Maximum number of attributes for a class (see R0902).
max-attributes=700
# Maximum number of local variables.
max-locals=700
# Maximum number of statements in function / method
max-statements=75
[SIMILARITIES]
# Ignore imports when computing similarities.
ignore-imports=yes
[MESSAGES CONTROL]
disable=bad-continuation,missing-function-docstring,too-few-public-methods
# List of members which are set dynamically and missed by pylint inference
# system, and so shouldn't trigger E1101 when accessed. Python regular
# expressions are accepted.
generated-members=numpy.*, torch.*