def _all_categories(): """Return the set of all categories used by check-webkit-style.""" # Take the union across all checkers. categories = CommonCategories.union(CppChecker.categories) categories = categories.union(JSChecker.categories) categories = categories.union(JSONChecker.categories) categories = categories.union(JSTestChecker.categories) categories = categories.union(TestExpectationsChecker.categories) categories = categories.union(ChangeLogChecker.categories) categories = categories.union(PNGChecker.categories) categories = categories.union(FeatureDefinesChecker.categories) categories = categories.union(SDKVariantChecker.categories) # FIXME: Consider adding all of the pep8 categories. Since they # are not too meaningful for documentation purposes, for # now we add only the categories needed for the unit tests # (which validate the consistency of the configuration # settings against the known categories, etc). categories = categories.union( ["pep8/W191", "pep8/W291", "pep8/E501", "pycodestyle/E501"]) if apple_additions(): categories = categories.union(apple_additions().all_categories()) return categories
def _all_categories(): """Return the set of all categories used by check-webkit-style.""" # Take the union across all checkers. categories = CommonCategories.union(CppChecker.categories) # FIXME: Consider adding all of the pep8 categories. Since they # are not too meaningful for documentation purposes, for # now we add only the categories needed for the unit tests # (which validate the consistency of the configuration # settings against the known categories, etc). categories = categories.union(["pep8/W191", "pep8/W291", "pep8/E501"]) return categories
def _all_categories(): """Return the set of all categories used by check-webkit-style.""" # Take the union across all checkers. categories = CommonCategories.union(CppChecker.categories) return categories