diff options
author | David Robillard <d@drobilla.net> | 2022-10-14 13:18:34 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-10-14 17:53:49 -0400 |
commit | 7140e86503d98e4b0f7aa65f89b47e4317a56134 (patch) | |
tree | a3216def597d3d6d2c7cf97409160dc4d234f39b /.clang-tidy | |
parent | e2a008621fbdb9367c964958dc96afa326bd115b (diff) | |
download | zix-7140e86503d98e4b0f7aa65f89b47e4317a56134.tar.gz zix-7140e86503d98e4b0f7aa65f89b47e4317a56134.tar.bz2 zix-7140e86503d98e4b0f7aa65f89b47e4317a56134.zip |
Simplify clang-tidy configuration
Diffstat (limited to '.clang-tidy')
-rw-r--r-- | .clang-tidy | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy new file mode 100644 index 0000000..83963f8 --- /dev/null +++ b/.clang-tidy @@ -0,0 +1,12 @@ +# Copyright 2020-2022 David Robillard <d@drobilla.net> +# SPDX-License-Identifier: CC0-1.0 OR ISC + +Checks: > + *, + -altera-*, + -hicpp-multiway-paths-covered, + -llvmlibc-*, + -readability-identifier-length, +WarningsAsErrors: '*' +HeaderFilterRegex: '.*' +FormatStyle: file |