initial setup
Buildscripts, nix shell, skeleton project
This commit is contained in:
commit
f5c43c4fb4
11 changed files with 284 additions and 0 deletions
16
src/lib.cpp
Normal file
16
src/lib.cpp
Normal file
|
@ -0,0 +1,16 @@
|
|||
#include <cstdio>
|
||||
|
||||
#include <clang-tidy/ClangTidyModule.h>
|
||||
#include <clang-tidy/ClangTidyModuleRegistry.h>
|
||||
|
||||
namespace clang::tidy::tidyfox {
|
||||
|
||||
class TidyfoxClangTidyModule: public ClangTidyModule {
|
||||
public:
|
||||
void addCheckFactories([[maybe_unused]] ClangTidyCheckFactories& check_factories) override {}
|
||||
};
|
||||
|
||||
static const ClangTidyModuleRegistry::Add<TidyfoxClangTidyModule>
|
||||
X("tidyfox", "outfoxxed's lint collection");
|
||||
|
||||
} // namespace clang::tidy::tidyfox
|
Loading…
Add table
Add a link
Reference in a new issue