diff options
-rw-r--r-- | include/.clang-tidy | 7 | ||||
-rw-r--r-- | wscript | 4 |
2 files changed, 10 insertions, 1 deletions
diff --git a/include/.clang-tidy b/include/.clang-tidy new file mode 100644 index 00000000..f8a0d67b --- /dev/null +++ b/include/.clang-tidy @@ -0,0 +1,7 @@ +Checks: > + *, + -clang-diagnostic-unused-macros, + -hicpp-signed-bitwise, +WarningsAsErrors: '*' +HeaderFilterRegex: '.*' +FormatStyle: file @@ -284,7 +284,9 @@ def lint(ctx): if "CLANG_TIDY" in ctx.env and "clang" in ctx.env.CC[0]: Logs.info("Running clang-tidy") - sources = glob.glob('src/*.c') + glob.glob('test/*.c') + sources = glob.glob('include/serd/*.h*') + sources += glob.glob('src/*.c') + sources += glob.glob('test/*.c') sources = list(map(os.path.abspath, sources)) procs = [] for source in sources: |