|
@@ -1,4 +1,24 @@
|
|
-[MESSAGE CONTROL]
|
|
+[MASTER]
|
|
|
|
|
|
-disable=missing-function-docstring,
|
|
+load-plugins=pylint.extensions.check_elif,
|
|
|
|
+ pylint.extensions.comparison_placement,
|
|
|
|
+ pylint.extensions.confusing_elif,
|
|
|
|
+ pylint.extensions.consider_ternary_expression,
|
|
|
|
+ pylint.extensions.emptystring,
|
|
|
|
+ pylint.extensions.eq_without_hash,
|
|
|
|
+ pylint.extensions.for_any_all,
|
|
|
|
+ pylint.extensions.mccabe,
|
|
|
|
+ pylint.extensions.no_self_use,
|
|
|
|
+ pylint.extensions.overlapping_exceptions,
|
|
|
|
+ pylint.extensions.private_import,
|
|
|
|
+ pylint.extensions.redefined_loop_name,
|
|
|
|
+ pylint.extensions.redefined_variable_type,
|
|
|
|
+ pylint.extensions.set_membership,
|
|
|
|
+ pylint.extensions.typing
|
|
|
|
+
|
|
|
|
+[MESSAGES CONTROL]
|
|
|
|
+
|
|
|
|
+disable=consider-alternative-union-syntax, # requires python>=3.10
|
|
|
|
+ deprecated-typing-alias, # requires python>=3.9, e.g. for dict[...]
|
|
|
|
+ missing-function-docstring,
|
|
missing-module-docstring
|
|
missing-module-docstring
|