diff -r 1a7d545d3ef2 -r e6748a5e24b9 src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsCheckerDefaults.py --- 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, }