aboutsummaryrefslogtreecommitdiffstats
path: root/.clang-tidy
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-10-07 15:15:31 -0400
committerDavid Robillard <d@drobilla.net>2022-10-07 15:15:31 -0400
commit92132eca5e75d3f95a3eb7e015c47765a79925cc (patch)
tree3ccb38f019e91f956ff23e2bd496e72043c082ea /.clang-tidy
parentb60d2da07e4d7e348dfa8d414256a996f443d6a4 (diff)
downloadpugl-92132eca5e75d3f95a3eb7e015c47765a79925cc.tar.gz
pugl-92132eca5e75d3f95a3eb7e015c47765a79925cc.tar.bz2
pugl-92132eca5e75d3f95a3eb7e015c47765a79925cc.zip
Simplify clang-tidy configuration
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy11
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/.*'