-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pylintrc
25 lines (23 loc) · 1.43 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
[MESSAGES CONTROL]
disable = C0116, C0301, C0302, E1101, E1133, R0801, R0902, R0903, R0911, R0912, R0913, R0914, R0915, R0917, W0201, W0212, W0613, W0718, W1401
; C0116: Missing function or method docstring (missing-function-docstring)
; C0301: Line too long (line-too-long)
; C0302: Too many lines in module (too-many-lines)
; E1101: Module 'cv2' has no '*' member (no-member)
; E1133: Non-iterable value stream is used in an iterating context (not-an-iterable)
; R0801: Similar lines in 2 files
; R0902: Too many instance attributes (too-many-instance-attributes)
; R0903: Too few public methods (too-few-public-methods)
; R0911: Too many return statements (too-many-return-statements)
; R0912: Too many branches (too-many-branches)
; R0913: Too many arguments (too-many-arguments)
; R0914: Too many local variables (too-many-locals)
; R0915: Too many statements (too-many-statements)
; R0917: Too many positional arguments (*/5) (too-many-positional-arguments)
; W0201: Attribute '*' defined outside __init__ (attribute-defined-outside-init)
; W0212: Access to a protected member * of a client class (protected-access)
; W0613: Unused argument '*' (unused-argument)
; W0718: Catching too general exception Exception (broad-exception-caught)
; W1401: Anomalous backslash in string: '\.'. String constant might be missing an r prefix. (anomalous-backslash-in-string)
; Deprecated
; R0907: Too many positional arguments (*/5) (too-many-positional-arguments)