mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-02 04:09:33 -05:00
committed by
Igor-Mikhail-Valentin Glebov
parent
f6af01b53d
commit
0ad3941f73
@@ -0,0 +1,22 @@
|
||||
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||||
file Copyright.txt or https://cmake.org/licensing for details. */
|
||||
#include <clang-tidy/ClangTidyModule.h>
|
||||
#include <clang-tidy/ClangTidyModuleRegistry.h>
|
||||
|
||||
namespace clang {
|
||||
namespace tidy {
|
||||
namespace cmake {
|
||||
class CMakeClangTidyModule : public ClangTidyModule
|
||||
{
|
||||
public:
|
||||
void addCheckFactories(ClangTidyCheckFactories& CheckFactories) override
|
||||
{
|
||||
// TODO
|
||||
}
|
||||
};
|
||||
|
||||
static ClangTidyModuleRegistry::Add<CMakeClangTidyModule> X(
|
||||
"cmake-clang-tidy", "Adds lint checks for the CMake code base.");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user