diff options
author | David Robillard <d@drobilla.net> | 2022-10-07 15:15:31 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-10-07 15:15:31 -0400 |
commit | 92132eca5e75d3f95a3eb7e015c47765a79925cc (patch) | |
tree | 3ccb38f019e91f956ff23e2bd496e72043c082ea /examples/.clang-tidy | |
parent | b60d2da07e4d7e348dfa8d414256a996f443d6a4 (diff) | |
download | pugl-92132eca5e75d3f95a3eb7e015c47765a79925cc.tar.gz pugl-92132eca5e75d3f95a3eb7e015c47765a79925cc.tar.bz2 pugl-92132eca5e75d3f95a3eb7e015c47765a79925cc.zip |
Simplify clang-tidy configuration
Diffstat (limited to 'examples/.clang-tidy')
-rw-r--r-- | examples/.clang-tidy | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/examples/.clang-tidy b/examples/.clang-tidy index f18400c..bf9899a 100644 --- a/examples/.clang-tidy +++ b/examples/.clang-tidy @@ -1,11 +1,7 @@ Checks: > - *, -*-named-parameter, -*-non-private-member-variables-in-classes, -*avoid-c-arrays, - -*magic-numbers, - -*uppercase-literal-suffix, - -altera*, -android-cloexec-fopen, -bugprone-easily-swappable-parameters, -bugprone-macro-parentheses, @@ -32,12 +28,9 @@ Checks: > -hicpp-signed-bitwise, -hicpp-vararg, -llvm-header-guard, - -llvmlibc-*, -misc-misplaced-const, -modernize-use-trailing-return-type, -performance-no-int-to-ptr, -readability-function-cognitive-complexity, - -readability-identifier-length, -readability-implicit-bool-conversion, -FormatStyle: file -HeaderFilterRegex: 'pugl/.*|test/.*|examples/.*' +InheritParentConfig: true |