-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy path.pylintrc
More file actions
25 lines (21 loc) · 776 Bytes
/
.pylintrc
File metadata and controls
25 lines (21 loc) · 776 Bytes
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]
# Pointless whining
# W0212 = Accessing protected attribute of client class
# W0232 = Class has no __init__ method
# W0401 = Wildcard import
# W0613 = Unused argument
# C0301 = Line too long
# C0103 = Invalid name
# R0201 = Method could be a function
# R0903 = Too few public methods
# R0904 = Too many public methods
# R0912 = Too many branches
# R0913 = Too many arguments
# R0914 = Too many local variables
# R0915 = Too many statements
# PyLint's module importation is unreliable
# F0401 = Unable to import module
# W0402 = Uses of a deprecated module
# Already an error when wildcard imports are used
# W0614 = Unused import from wildcard
disable=W0401, W0614, R0902, R0903, R0904, RO912, R0913, R0914, R0915, C0103