
Summary: This patch allows modules to specify default options for the checks defined in them. This way a sufficiently configurable check can be registered in multiple modules with different default options. E.g. the SpacesBeforeComments option may be set to 1 for the "llvm-namespace-comments" check and to 2 for the "google-readability-namespace-comment" check without modifying or extending the check code. This patch also registers the google-readability-braces-around-statements check with suitable defaults. Reviewers: djasper Reviewed By: djasper Subscribers: curdeius, cfe-commits Differential Revision: http://reviews.llvm.org/D5798 llvm-svn: 219923
40 lines
1.2 KiB
C++
40 lines
1.2 KiB
C++
//===--- tools/extra/clang-tidy/ClangTidyModule.cpp - Clang tidy tool -----===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
///
|
|
/// \file Implements classes required to build clang-tidy modules.
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "ClangTidyModule.h"
|
|
|
|
namespace clang {
|
|
namespace tidy {
|
|
|
|
void ClangTidyCheckFactories::registerCheckFactory(StringRef Name,
|
|
CheckFactory Factory) {
|
|
Factories[Name] = Factory;
|
|
}
|
|
|
|
void ClangTidyCheckFactories::createChecks(
|
|
ClangTidyContext *Context,
|
|
std::vector<std::unique_ptr<ClangTidyCheck>> &Checks) {
|
|
GlobList &Filter = Context->getChecksFilter();
|
|
for (const auto &Factory : Factories) {
|
|
if (Filter.contains(Factory.first))
|
|
Checks.emplace_back(Factory.second(Factory.first, Context));
|
|
}
|
|
}
|
|
|
|
ClangTidyOptions ClangTidyModule::getModuleOptions() {
|
|
return ClangTidyOptions();
|
|
}
|
|
|
|
} // namespace tidy
|
|
} // namespace clang
|