summaryrefslogtreecommitdiff
path: root/.clang-tidy
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2024-09-06 23:22:18 +0200
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2024-09-06 23:22:18 +0200
commitdef67bba57e7cfdf9942bc2c88a4ce484963f9d2 (patch)
treea0c2024343151166bebc70440e2adb58c611d409 /.clang-tidy
parentaa427cb5fe7564a85703f14f76f854419274decc (diff)
maybe_uninit
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy30
1 files changed, 30 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy
index d3f5a12..11ba839 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -1 +1,31 @@
+Checks:
+ - "hicpp-*"
+ - "cppcoreguidelines-*"
+ - "misc-*"
+ - "clang-analyzer-*"
+ - "-misc-include-cleaner"
+ - "performance-*"
+ - "readability-*"
+ - "-*-named-parameter"
+ - "-*-avoid-do-while"
+ - "-*-magic-numbers"
+ - "-*-identifier-length"
+ - "-*-union-access"
+ - "-*-vararg"
+ - "-*-macro-usage"
+ - "-*-non-private-member-variables-in-classes"
+ - "-*-avoid-non-const-global-variables"
+ - "-*-missing-std-forward"
+ - "-*-owning-memory"
+ - "-*-no-malloc"
+ - "-*-avoid-c-arrays"
+ - "-*-use-anonymous-namespace"
+ - "-*-reinterpret-cast"
+ - "-*-noexcept-move"
+ - "-*-noexcept-move-constructor"
+ - "-*-noexcept-move-operations"
+ - "-*-bounds-array-to-pointer-decay"
+ - "-*-no-array-decay"
+ - "-*-signed-bitwise"
+ - "-readability-use-anyofallof"