|
@@ -1,3 +1,23 @@
|
|
|
|
+[MASTER]
|
|
|
|
+
|
|
|
|
+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]
|
|
[MESSAGES CONTROL]
|
|
|
|
|
|
-disable=missing-docstring
|
|
+disable=consider-alternative-union-syntax, # requires python>=3.10
|
|
|
|
+ deprecated-typing-alias, # requires python>=3.9, e.g. for dict[...]
|
|
|
|
+ missing-docstring
|