jade
43cf487c25
It is a little bit scuffed, but it seems to produce correct results. We
can run it at a later date when we want to explode every in-flight
commit in existence and then need to filter-branch them.
Fixes: #188
Change-Id: Id97e4651f78804a941d941df02c7c1b21ce453b6
20 lines
657 B
C++
20 lines
657 B
C++
#include <clang-tidy/ClangTidyModule.h>
|
|
#include <clang-tidy/ClangTidyModuleRegistry.h>
|
|
#include "FixIncludes.hh"
|
|
#include "HasPrefixSuffix.hh"
|
|
|
|
namespace nix::clang_tidy {
|
|
using namespace clang;
|
|
using namespace clang::tidy;
|
|
|
|
class NixClangTidyChecks : public ClangTidyModule {
|
|
public:
|
|
void addCheckFactories(ClangTidyCheckFactories &CheckFactories) override {
|
|
CheckFactories.registerCheck<HasPrefixSuffixCheck>("lix-hasprefixsuffix");
|
|
CheckFactories.registerCheck<FixIncludesCheck>("lix-fixincludes");
|
|
}
|
|
};
|
|
|
|
static ClangTidyModuleRegistry::Add<NixClangTidyChecks> X("lix-module", "Adds lix specific checks");
|
|
};
|