forked from Source-Python-Dev-Team/Source.Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pylintrc
More file actions
24 lines (23 loc) · 983 Bytes
/
.pylintrc
File metadata and controls
24 lines (23 loc) · 983 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
[MESSAGES CONTROL]
# Definitions of codes disabled
# C0330 - Wrong %s indentation
# E0611 - No name %r in module %r
# E1101 - %s %r has no %r member
# F0401 - Unable to import %s
# R0902 - Too many instance attributes
# R0903 - Too few public methods
# R0904 - Too many public methods
# R0911 - Too many return statements
# R0912 - Too many branches
# R0913 - Too many arguments
# R0914 - Too many local variables
# R0915 - Too many statements
# R0921 - Abstract class not referenced
# W0141 - Used builtin function %r
# W0142 - Used * or ** magic
# W0201 - Attribute %r defined outside __init__
# W0212 - Access to a protected member %s of a client class
# W0231 - __init__ method from base class %r is not called
# W0232 - Class has no __init__ method
# W0702 - No exception type(s) specified
disable=C0330, E0611, E1101, F0401, R0902, R0903, R0904, R0911, R0912, R0913, R0914, R0915, R0921, W0141, W0142, W0201, W0212, W0231, W0232, W0702