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 /.clang-tidy | |
parent | b60d2da07e4d7e348dfa8d414256a996f443d6a4 (diff) | |
download | pugl-92132eca5e75d3f95a3eb7e015c47765a79925cc.tar.gz pugl-92132eca5e75d3f95a3eb7e015c47765a79925cc.tar.bz2 pugl-92132eca5e75d3f95a3eb7e015c47765a79925cc.zip |
Simplify clang-tidy configuration
Diffstat (limited to '.clang-tidy')
-rw-r--r-- | .clang-tidy | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy new file mode 100644 index 0000000..0a4ae44 --- /dev/null +++ b/.clang-tidy @@ -0,0 +1,11 @@ +Checks: > + *, + -*-magic-numbers, + -*-uppercase-literal-suffix, + -altera*, + -clang-diagnostic-unused-function, + -clang-diagnostic-unused-macros, + -llvmlibc-*, + -readability-identifier-length, +FormatStyle: file +HeaderFilterRegex: 'pugl/.*' |