Skip to content

Commit

Permalink
Added .clang-tidy to specify checks (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilipFackler committed Apr 15, 2024
1 parent f82969f commit 3a57ffb
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .clang-tidy
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
Checks: "bugprone-*,readability-identifier-*,cppcoreguidelines-*"
WarningsAsErrors: ""
HeaderFilterRegex: ""
AnalyzeTemporaryDtors: false
FormatStyle: none
CheckOptions:
[
{ key: readability-identifier-naming.NamespaceCase, value: lower_case },
{ key: readability-identifier-naming.ClassCase, value: CamelCase },
{ key: readability-identifier-naming.VariableCase, value: camelBack },
{ key: readability-identifier-naming.ClassMethodCase, value: camelBack },
{ key: readability-identifier-naming.PrivateMemberPrefix, value: _ },
]

---

0 comments on commit 3a57ffb

Please sign in to comment.