From 5aeb95bfa65b61ee64d07cd76905fb071c8a5e17 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 24 Feb 2019 19:28:11 +0100 Subject: Add clang-tidy file --- .clang-tidy | 29 +++++++++++++++++++++++++++++ wscript | 12 ++---------- 2 files changed, 31 insertions(+), 10 deletions(-) create mode 100644 .clang-tidy diff --git a/.clang-tidy b/.clang-tidy new file mode 100644 index 00000000..4bc595ff --- /dev/null +++ b/.clang-tidy @@ -0,0 +1,29 @@ +Checks: > + *, + -android-cloexec-fopen, + -bugprone-suspicious-string-compare, + -cert-dcl50-cpp, + -cert-msc30-c, + -cert-msc50-cpp, + -clang-analyzer-alpha.*, + -cppcoreguidelines-pro-bounds-array-to-pointer-decay, + -cppcoreguidelines-pro-bounds-pointer-arithmetic, + -cppcoreguidelines-pro-type-reinterpret-cast, + -cppcoreguidelines-pro-type-vararg, + -fuchsia-default-arguments, + -fuchsia-overloaded-operator, + -google-readability-todo, + -google-runtime-references, + -google-explicit-constructor, + -hicpp-invalid-access-moved, + -hicpp-multiway-paths-covered, + -hicpp-no-array-decay, + -hicpp-signed-bitwise, + -hicpp-vararg, + -llvm-header-guard, + -readability-else-after-return, + -readability-implicit-bool-conversion, + -readability-named-parameter, +WarningsAsErrors: '' +HeaderFilterRegex: '.*' +FormatStyle: file diff --git a/wscript b/wscript index c7182d58..c4aa1b16 100644 --- a/wscript +++ b/wscript @@ -225,16 +225,8 @@ def build(bld): def lint(ctx): "checks code for style issues" import subprocess - cmd = ("clang-tidy -p=. -header-filter=.* -checks=\"*," + - "-bugprone-suspicious-string-compare," + - "-clang-analyzer-alpha.*," + - "-google-readability-todo," + - "-hicpp-signed-bitwise," + - "-llvm-header-guard," + - "-misc-unused-parameters," + - "-readability-else-after-return\" " + - "../src/*.c") - subprocess.call(cmd, cwd='build', shell=True) + subprocess.call('clang-tidy ../src/*.c ../tests/*.c ../tests/*.cpp', + cwd='build', shell=True) def amalgamate(ctx): "builds single-file amalgamated source" -- cgit v1.2.1