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 # R0201: Method could be a function. Used when a method doesn't use its bound instance, and so |
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. |
65 # could be written as a function. |
66 disable-msg=W0613,W0622,W0232,W0142,W0102,W0212,R0201 |
66 # R0801: Similar lines in %s files. Indicates that a set of similar lines has been detected |
|
67 # among multiple file. This usually means that the code should be refactored to avoid this |
|
68 # duplication. |
|
69 disable-msg=W0613,W0622,W0232,W0142,W0102,W0212,R0201,R0801 |
67 |
70 |
68 |
71 |
69 [REPORTS] |
72 [REPORTS] |
70 |
73 |
71 # set the output format. Available formats are text, parseable, colorized, msvs |
74 # set the output format. Available formats are text, parseable, colorized, msvs |