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

branch
eric7
changeset 10046
35b27af462ef
parent 10043
f1427d95cfde
child 10050
3750abc45d5e
equal deleted inserted replaced
10045:f5c57f8d17a4 10046:35b27af462ef
45 ## Dynamically typed annotations 45 ## Dynamically typed annotations
46 "A401", 46 "A401",
47 ## Annotations Future 47 ## Annotations Future
48 "A871", 48 "A871",
49 "A872", 49 "A872",
50 "A873",
50 ## Annotation Coverage 51 ## Annotation Coverage
51 "A881", 52 "A881",
52 ## Annotation Complexity 53 ## Annotation Complexity
53 "A891", 54 "A891",
54 "A892", 55 "A892",
107 "A206", 108 "A206",
108 "A301", 109 "A301",
109 "A401", 110 "A401",
110 ), 111 ),
111 ), 112 ),
112 (self.__checkAnnotationsFuture, ("A871", "A872")), 113 (self.__checkAnnotationsFuture, ("A871", "A872", "A873")),
113 (self.__checkAnnotationsCoverage, ("A881",)), 114 (self.__checkAnnotationsCoverage, ("A881",)),
114 (self.__checkAnnotationComplexity, ("A891", "A892")), 115 (self.__checkAnnotationComplexity, ("A891", "A892")),
115 ] 116 ]
116 117
117 self.__checkers = [] 118 self.__checkers = []

eric ide

mercurial