summaryrefslogtreecommitdiffstats
path: root/src/win32/.clang-tidy
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-02-04 19:25:22 -0500
committerDavid Robillard <d@drobilla.net>2023-02-04 19:25:22 -0500
commit5a9787b4247c6735cc3213944945e8983002edf9 (patch)
tree635a8711a53b9e50d7dcd24dc4acefefce694c3d /src/win32/.clang-tidy
parentc4b3814edad510c6c124089822bd5506f9334411 (diff)
downloadzix-5a9787b4247c6735cc3213944945e8983002edf9.tar.gz
zix-5a9787b4247c6735cc3213944945e8983002edf9.tar.bz2
zix-5a9787b4247c6735cc3213944945e8983002edf9.zip
Suppress/fix clang-tidy warnings on Windows
Diffstat (limited to 'src/win32/.clang-tidy')
-rw-r--r--src/win32/.clang-tidy8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/win32/.clang-tidy b/src/win32/.clang-tidy
new file mode 100644
index 0000000..386137b
--- /dev/null
+++ b/src/win32/.clang-tidy
@@ -0,0 +1,8 @@
+# Copyright 2021-2022 David Robillard <d@drobilla.net>
+# SPDX-License-Identifier: 0BSD OR ISC
+
+Checks: >
+ -hicpp-signed-bitwise,
+ -misc-misplaced-const,
+ -performance-no-int-to-ptr,
+InheritParentConfig: true