aboutsummaryrefslogtreecommitdiff
path: root/.clang-tidy
diff options
context:
space:
mode:
authorJade Lovelace <lix@jade.fyi>2024-08-04 22:02:53 -0700
committerJade Lovelace <lix@jade.fyi>2024-08-08 14:53:17 -0700
commita5f0954c290157875b4dfb79edcf651f55742dc2 (patch)
tree16efd430c4c0828ee236eda636015e79e15bb965 /.clang-tidy
parenta85c4ce535c940bd2f48c34ab823fb3a8f5be0cc (diff)
clang-tidy: write a lint for charptr_cast
This lets us ensure that nobody is putting in new reinterpret_cast instances where they could safely use charptr_cast instead. Change-Id: I6358a3934c8133c7150042635843bdbb6b9218d4
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy7
1 files changed, 7 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy
index ccfdf9e7d..87f6d0404 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -22,6 +22,13 @@ Checks:
- cppcoreguidelines-avoid-capturing-lambda-coroutines
# crimes must be appropriately declared as crimes
- cppcoreguidelines-pro-type-cstyle-cast
+ - lix-*
+ # This can not yet be applied to Lix itself since we need to do source
+ # reorganization so that lix/ include paths work.
+ - -lix-fixincludes
+ # This lint is included as an example, but the lib function it replaces is
+ # already gone.
+ - -lix-hasprefixsuffix
CheckOptions: