diff options
author | David Robillard <d@drobilla.net> | 2020-10-29 13:45:46 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-10-30 10:58:27 +0100 |
commit | 750eb8027b1f164c276ac7b1b14f04485cf4429d (patch) | |
tree | 1906196c3088d3f7c90255c1d653764a16f3c5c2 /bindings/cxx/include/.clang-tidy | |
parent | 21d1e350a3b22ba690553f8371714fd9e896c7c8 (diff) | |
download | pugl-750eb8027b1f164c276ac7b1b14f04485cf4429d.tar.gz pugl-750eb8027b1f164c276ac7b1b14f04485cf4429d.tar.bz2 pugl-750eb8027b1f164c276ac7b1b14f04485cf4429d.zip |
Move C++ bindings to a separate directory
This seemed messy and potentially misleading for what is fundamentally a C++
library. It also makes it possible to set separate clang-tidy and clang-format
settings for each to avoid "tainting" the C settings, though currently the
headers use the same checks.
Diffstat (limited to 'bindings/cxx/include/.clang-tidy')
-rw-r--r-- | bindings/cxx/include/.clang-tidy | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bindings/cxx/include/.clang-tidy b/bindings/cxx/include/.clang-tidy new file mode 100644 index 0000000..6453ca0 --- /dev/null +++ b/bindings/cxx/include/.clang-tidy @@ -0,0 +1,5 @@ +Checks: > + *, + -*-uppercase-literal-suffix, +FormatStyle: file +HeaderFilterRegex: 'pugl/.*' |