@@ -94,7 +94,24 @@ 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,
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+ R1732,
108+ R1735, # Consider using a dict or list literal
109+ W0237, # Argument renamed in override
110+ W0613, # Unused argument
111+ W0621, # Redefining name from outer scope
112+ W0719
113+ W1404, # Implicit string concatenation
114+ W1514, # `open()` used without encoding
98115
99116[REPORTS]
100117# Set the output format. Available formats are text, parseable, colorized, msvs
@@ -436,4 +453,4 @@ analyse-fallback-blocks=no
436453
437454# Exceptions that will emit a warning when being caught. Defaults to
438455# "Exception"
439- overgeneral-exceptions =Exception
456+ overgeneral-exceptions =builtins. Exception
0 commit comments