tool-default-configs/.clang-tidy

28 lines
563 B
Text
Raw Normal View History

2023-08-11 23:34:24 +02:00
---
Checks: '
2023-09-28 02:06:46 +02:00
bugprone-branch-clone,
bugprone-reserved-identifier,
bugprone-use-after-move,
2023-08-11 23:34:24 +02:00
clang-diagnostic-*,
clang-analyzer-*,
cppcoreguidelines-*,
google-explicit-constructor,
2023-09-28 02:06:46 +02:00
google-global-names-in-headers,
google-readability-casting,
google-runtime-int,
2023-08-11 23:34:24 +02:00
llvm-header-guard,
2023-09-28 02:06:46 +02:00
llvm-include-order,
2023-08-11 23:34:24 +02:00
llvm-namespace-comment,
2023-09-28 02:06:46 +02:00
misc-*,
-misc-no-recursion,
modernize-*,
-modernize-use-nodiscard,
-modernize-use-trailing-return-type,
performance-*,
readability-*,
-readability-identifier-length,
2023-08-11 23:34:24 +02:00
'
2023-09-28 02:06:46 +02:00
WarningsAsErrors: '*'
2023-08-11 23:34:24 +02:00
...