equal
deleted
inserted
replaced
59 # W0102: Dangerous default value %s as argument Used when a mutable value as list or dictionary |
59 # W0102: Dangerous default value %s as argument Used when a mutable value as list or dictionary |
60 # is detected in a default value for an argument. |
60 # is detected in a default value for an argument. |
61 # W0212: Access to a protected member %s of a client class Used when a protected member |
61 # W0212: Access to a protected member %s of a client class Used when a protected member |
62 # (i.e. class member with a name beginning with an underscore) is access outside the class |
62 # (i.e. class member with a name beginning with an underscore) is access outside the class |
63 # or a descendant of the class where it's defined. |
63 # or a descendant of the class where it's defined. |
64 disable-msg=W0613,W0622,W0232,W0142,W0102,W0212 |
64 # R0201: Method could be a function. Used when a method doesn't use its bound instance, and so |
|
65 # could be written as a function. |
|
66 disable-msg=W0613,W0622,W0232,W0142,W0102,W0212,R0201 |
65 |
67 |
66 |
68 |
67 [REPORTS] |
69 [REPORTS] |
68 |
70 |
69 # set the output format. Available formats are text, parseable, colorized, msvs |
71 # set the output format. Available formats are text, parseable, colorized, msvs |