summaryrefslogtreecommitdiff
path: root/.clang-tidy
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2025-01-20 22:04:30 +0100
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2025-01-20 22:04:30 +0100
commite60c508e976ff8acb71a2fd0fc6958c5f1f50a69 (patch)
treea3e6fa3d693986185e77f7287b546104a7f4c030 /.clang-tidy
Initial commit
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy34
1 files changed, 34 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy
new file mode 100644
index 0000000..d7337bd
--- /dev/null
+++ b/.clang-tidy
@@ -0,0 +1,34 @@
+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-swap"
+ - "-*-noexcept-move"
+ - "-*-noexcept-move-constructor"
+ - "-*-noexcept-move-operations"
+ - "-*-bounds-array-to-pointer-decay"
+ - "-*-no-array-decay"
+ - "-*-signed-bitwise"
+ - "-readability-use-anyofallof"
+ - "-readability-function-cognitive-complexity"
+ - "-readability-math-missing-parentheses"
+ - "-*-rvalue-reference-param-not-moved"