Skip to content

Commit

Permalink
copy paste .clang-tidy from a modern-cpp-template
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Arniiiii committed Apr 16, 2024
1 parent 9f4867a commit 985e3db
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .clang-tidy
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
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

0 comments on commit 985e3db

Please sign in to comment.