-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pylintrc
40 lines (37 loc) · 942 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
[BASIC]
argument-rgx=[a-zA-Z_][a-zA-Z0-9_]{0,30}
attr-rgx=[a-zA-Z_][a-zA-Z0-9_]{0,30}
const-rgx=[a-zA-Z_][a-zA-Z0-9_]{0,30}
variable-rgx=[a-zA-Z_][a-zA-Z0-9_]{0,30}
[FORMAT]
max-line-length=120
[TYPECHECK]
generated-members=numpy.*
[MESSAGES CONTROL]
disable=
arguments-differ,
fixme,
missing-class-docstring,
missing-final-newline,
missing-function-docstring,
missing-module-docstring,
no-else-return,
too-few-public-methods,
too-many-arguments,
too-many-boolean-expressions,
too-many-branches,
too-many-format-args,
too-many-instance-attributes,
too-many-locals,
too-many-nested-blocks,
too-many-return-statements,
too-many-statements,
trailing-whitespace,
line-too-long,
redefined-outer-name,
wrong-import-position,
multiple-statements,
attribute-defined-outside-init,
unused-import,
consider-using-from-import,
pointless-statement,