src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Annotations/AnnotationsCheckerDefaults.py

branch
eric7
changeset 9276
e6748a5e24b9
parent 9221
bf71ee032bb4
child 9653
e67609152c5e
equal deleted inserted replaced
9275:1a7d545d3ef2 9276:e6748a5e24b9
12 "SuppressNoneReturning": False, 12 "SuppressNoneReturning": False,
13 "SuppressDummyArgs": False, 13 "SuppressDummyArgs": False,
14 "AllowUntypedDefs": False, 14 "AllowUntypedDefs": False,
15 "AllowUntypedNested": False, 15 "AllowUntypedNested": False,
16 "MypyInitReturn": False, 16 "MypyInitReturn": False,
17 "AllowStarArgAny": False,
17 "DispatchDecorators": ["singledispatch", "singledispatchmethod"], 18 "DispatchDecorators": ["singledispatch", "singledispatchmethod"],
18 "OverloadDecorators": ["overload"], 19 "OverloadDecorators": ["overload"],
19 # Annotation Coverage 20 # Annotation Coverage
20 "MinimumCoverage": 75, # % of type annotation coverage 21 "MinimumCoverage": 75, # % of type annotation coverage
21 # Annotation Complexity 22 # Annotation Complexity
22 "MaximumComplexity": 3, 23 "MaximumComplexity": 3,
23 "MaximumLength": 7, 24 "MaximumLength": 7,
25 # Annotations Future
26 "ForceFutureAnnotations": False,
24 } 27 }

eric ide

mercurial