--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsCheckerDefaults.py Wed Jul 27 18:02:43 2022 +0200 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsCheckerDefaults.py Thu Jul 28 14:19:57 2022 +0200 @@ -14,6 +14,7 @@ "AllowUntypedDefs": False, "AllowUntypedNested": False, "MypyInitReturn": False, + "AllowStarArgAny": False, "DispatchDecorators": ["singledispatch", "singledispatchmethod"], "OverloadDecorators": ["overload"], # Annotation Coverage @@ -21,4 +22,6 @@ # Annotation Complexity "MaximumComplexity": 3, "MaximumLength": 7, + # Annotations Future + "ForceFutureAnnotations": False, }