From c240894406cff4fa62136509d194b0f36cfc9166 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 29 Dec 2017 14:21:46 -0500 Subject: Use clang-tidy for linting --- wscript | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'wscript') diff --git a/wscript b/wscript index 751f856..b794288 100644 --- a/wscript +++ b/wscript @@ -474,7 +474,17 @@ def test(ctx): pass def lint(ctx): - subprocess.call('cpplint.py --filter=+whitespace/comments,-whitespace/tab,-whitespace/braces,-whitespace/labels,-build/header_guard,-readability/casting,-readability/todo,-build/include,-runtime/sizeof src/* lilv/*', shell=True) + "checks code for style issues" + import subprocess + cmd = ("clang-tidy -p=. -header-filter=.* -checks=\"*," + + "-clang-analyzer-alpha.*," + + "-google-readability-todo," + + "-llvm-header-guard," + + "-llvm-include-order," + + "-misc-unused-parameters," + + "-readability-else-after-return\" " + + "$(find .. -name '*.c')") + subprocess.call(cmd, cwd='build', shell=True) def posts(ctx): path = str(ctx.path.abspath()) -- cgit v1.2.1