diff options
author | David Robillard <d@drobilla.net> | 2017-12-16 11:55:38 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2017-12-16 14:00:28 +0100 |
commit | 0aab4478058a006819549e40946dc23dce05bafa (patch) | |
tree | fdb4e2c29d1cd32650457db4583edd6ef62d000c /wscript | |
parent | 46b8e6ed53370d76c294c5e40b040ea78d6c9847 (diff) | |
download | sord-0aab4478058a006819549e40946dc23dce05bafa.tar.gz sord-0aab4478058a006819549e40946dc23dce05bafa.tar.bz2 sord-0aab4478058a006819549e40946dc23dce05bafa.zip |
Fix various minor style issues
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -237,7 +237,7 @@ def build(bld): bld.add_post_fun(fix_docs) 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 src/*.* sord/* src/zix/*.*', shell=True) + subprocess.call('clang-tidy -checks="*,-misc-unused-parameters,-readability-else-after-return,-llvm-header-guard,-google-readability-todo,-llvm-include-order,-clang-analyzer-alpha.*,-readability-inconsistent-declaration-parameter-name" -extra-arg="-std=c99" -extra-arg="-I." -extra-arg="-I../serd" -extra-arg="-I./src" -extra-arg="-Ibuild" ./sord/*.h ./src/*.c ./src/*.h', shell=True) def fix_docs(ctx): if ctx.cmd == 'build': |