1
0
Fork 0
mirror of https://github.com/TheLartians/ModernCppStarter.git synced 2025-08-30 21:51:12 +02:00
ModernCppStarter/.clang-tidy
Gerodote 985e3db8de copy paste .clang-tidy from a modern-cpp-template
It's a really good default.
It's copy-paste from https://github.com/filipdutescu/modern-cpp-template
with one modification: turn off warnings as error for clang-tidy.
2024-04-16 12:40:10 +00:00

6 lines
299 B
YAML

---
Checks: '*,-fuchsia-*,-google-*,-zircon-*,-abseil-*,-modernize-use-trailing-return-type,-llvm-*,-llvmlibc-*'
CheckOptions: [{ key: misc-non-private-member-variables-in-classes, value: IgnoreClassesWithAllMemberVariablesBeingPublic }]
WarningsAsErrors: ''
HeaderFilterRegex: ''
FormatStyle: none