|
1 # Brain-dead errors regarding standard language features |
|
2 # W0142 = *args and **kwargs support |
|
3 # W0403 = Relative imports |
|
4 |
|
5 # Pointless whinging |
|
6 # R0201 = Method could be a function |
|
7 # W0212 = Accessing protected attribute of client class |
|
8 # W0613 = Unused argument |
|
9 # W0232 = Class has no __init__ method |
|
10 # R0903 = Too few public methods |
|
11 # C0301 = Line too long |
|
12 # R0913 = Too many arguments |
|
13 # C0103 = Invalid name |
|
14 # R0914 = Too many local variables |
|
15 |
|
16 # PyLint's module importation is unreliable |
|
17 # F0401 = Unable to import module |
|
18 # W0402 = Uses of a deprecated module |
|
19 |
|
20 # Already an error when wildcard imports are used |
|
21 # W0614 = Unused import from wildcard |
|
22 |
|
23 # Sometimes disabled depending on how bad a module is |
|
24 # C0111 = Missing docstring |
|
25 |
|
26 # Disable the message(s) with the given id(s). |
|
27 disable-msg=W0142,W0403,R0201,W0212,W0613,W0232,R0903,W0614,C0111,C0301,R0913,C0103,F0401,W0402,R0914 |
|
28 |