-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.pylintrc
executable file
·46 lines (37 loc) · 909 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]
jobs=8
# A comma-separated list of package or module names from where C extensions may
# be loaded. Extensions are loading into the active Python interpreter and may
# run arbitrary code.
extension-pkg-whitelist=numpy,cv2,pyqtgraph
[MESSAGES CONTROL]
disable=
invalid-name,
too-many-arguments,
too-many-function-args,
too-many-locals,
too-many-lines,
too-many-statements,
too-many-branches,
too-many-instance-attributes,
too-many-public-methods,
too-few-public-methods,
line-too-long,
len-as-condition,
assignment-from-no-return,
ungrouped-imports,
wrong-import-order,
wrong-import-position,
protected-access,
chained-comparison,
import-outside-toplevel,
no-else-return,
no-else-continue,
no-else-break,
unnecessary-pass,
invalid-unary-operand-type
[TYPECHECK]
ignored-modules = numpy,cv2,websockets
[FORMAT]
# Use 2 spaces
indent-string=' '