tool-default-configs/.clang-tidy

24 lines
365 B
Text
Raw Normal View History

2023-08-11 23:34:24 +02:00
---
Checks: '
bugprone-*,
2023-08-11 23:34:24 +02:00
clang-analyzer-*,
clang-diagnostic-*,
2023-08-11 23:34:24 +02:00
cppcoreguidelines-*,
google-*,
llvm-*,
2023-09-28 02:06:46 +02:00
misc-*,
modernize-*,
performance-*,
readability-*,
-misc-no-recursion,
-modernize-use-nodiscard,
-modernize-use-trailing-return-type,
-readability-else-after-return,
2023-09-28 02:06:46 +02:00
-readability-identifier-length,
'
2023-09-28 02:06:46 +02:00
WarningsAsErrors: '*'
2023-08-11 23:34:24 +02:00
...