-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.pylintrc
More file actions
30 lines (27 loc) · 1.34 KB
/
.pylintrc
File metadata and controls
30 lines (27 loc) · 1.34 KB
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
[MESSAGES CONTROL]
# R0801:Similar lines
# C0111:Missing method docstring (missing-docstring)
# W0212:Access to a protected member of a client class (protected-access)
# C0103:Invalid method name "pop_QUIT" (invalid-name)
# W0511:TODO
# W0703:Catching too general exception Exception (broad-except)
# R0903:Too few public methods (1/2) (too-few-public-methods)
# W0613:Unused argument 'cipher' (unused-argument)
# R0902:Too many instance attributes (8/7) (too-many-instance-attributes)
# W0201:Attribute 'voting' defined outside __init__
# E1101:Instance of 'BaseVoting' has no 'voting' member
# R0914:Too many local variables
# W0702:No exception type(s) specified (bare-except)
# E1136:Value 'self.body' is unsubscriptable
# R0901:Too many ancestors
# C0112:Empty module docstring
# C0115: Missing class docstring (missing-class-docstring)
# C0114: Missing module docstring (missing-module-docstring)
# C0116: Missing function or method docstring (missing-function-docstring)
# C0209:Formatting a regular string which could be a f-string (consider-using-f-string)
# W0719:Raising too general exception: Exception (broad-exception-raised)
disable=C0111,W0212,C0103,W0511,W0703,R0903,W0613,R0902,R0801,W0201,E1101,R0914,W0702,E1136,R0901,C0112,C0115,C0114,C0116,C0209,W0719
[REPORTS]
msg-template = {path}:{line} {msg_id}:{msg} ({symbol})
[FORMAT]
max-line-length = 120