@@ -94,14 +94,22 @@ disable=
9494 useless-object-inheritance, # TODO: Enable this check and fix code once Python 2 is no longer supported.
9595 super-with-arguments,
9696 raise-missing-from,
97- E1136,
98- C0209,
99- W0237,
100- W1514,
101- R1710,
102- R1714,
103- W0613,
104- R1735
97+ C0116, # Missing function or method docstring
98+ C0209, # Use f-string instead of format
99+ E0015, # Unrecognized option found in config
100+ E0702, # Raising a string instead of an exception
101+ E1101, # Module has no member (likely dynamic attr)
102+ E1136, # Value assigned to something inferred as None
103+ R0022, # Useless option value in config
104+ R1710, # Inconsistent return statements
105+ R1714, # Consider using `in` with comparisons
106+ R1729, # Use a generator
107+ R1735, # Consider using a dict or list literal
108+ W0237, # Argument renamed in override
109+ W0613, # Unused argument
110+ W0621, # Redefining name from outer scope
111+ W1404, # Implicit string concatenation
112+ W1514, # `open()` used without encoding
105113
106114[REPORTS]
107115# Set the output format. Available formats are text, parseable, colorized, msvs
0 commit comments