-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pylintrc
57 lines (51 loc) · 1.05 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
55
56
57
[MASTER]
jobs=8
persistent=no
profile=no
extension-pkg-whitelist=numpy,pandas,sklearn,scipy
[FORMAT]
max-line-length=200
max-module-lines=1000
[VARIABLES]
init-import=yes
[BASIC]
good-names=i,j,_,x,y,z,N,E,S,W,id,X,Y,w,b,A,I
no-docstring-rgx=_.*
[DESIGN]
max-args=10
max-attributes=20
[SIMILARITIES]
min-similarity-lines=4
ignore-comments=yes
ignore-docstrings=yes
ignore-imports=yes
[MESSAGES CONTROL]
enable=all
disable=
C,
R,
I,
abstract-method,
anomalous-backslash-in-string,
arguments-differ,
attribute-defined-outside-init,
broad-except,
f-string-without-interpolation,
fixme,
invalid-overridden-method,
invalid-sequence-index,
invalid-unary-operand-type,
logging-format-interpolation,
logging-fstring-interpolation,
logging-not-lazy,
not-an-iterable,
not-callable,
protected-access,
redefined-builtin,
redefined-outer-name,
unbalanced-tuple-unpacking,
unnecessary-pass,
unsubscriptable-object,
unused-argument,
unused-wildcard-import,
wildcard-import,