Skip to content

Commit

Permalink
chore(.clang-tidy): add readability-identifier-naming (#2763)
Browse files Browse the repository at this point in the history
Signed-off-by: Kenji Miyake <[email protected]>
  • Loading branch information
kenji-miyake authored Aug 2, 2022
1 parent b2fe6e1 commit 9514af7
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ Checks: "
readability-delete-null-pointer,
readability-else-after-return,
readability-function-cognitive-complexity,
readability-identifier-naming,
readability-inconsistent-declaration-parameter-name,
readability-isolate-declaration,
readability-make-member-function-const,
Expand Down Expand Up @@ -426,6 +427,20 @@ CheckOptions:
value: "0"
- key: readability-else-after-return.WarnOnUnfixable
value: "1"
- key: readability-identifier-naming.NamespaceCase
value: lower_case
- key: readability-identifier-naming.ClassCase
value: CamelCase
- key: readability-identifier-naming.PrivateMemberPrefix
value: ""
- key: readability-identifier-naming.StructCase
value: CamelCase
- key: readability-identifier-naming.FunctionCase
value: lower_case
- key: readability-identifier-naming.VariableCase
value: lower_case
- key: readability-identifier-naming.GlobalConstantCase
value: UPPER_CASE
- key: readability-inconsistent-declaration-parameter-name.IgnoreMacros
value: "1"
- key: readability-inconsistent-declaration-parameter-name.Strict
Expand Down

0 comments on commit 9514af7

Please sign in to comment.