Skip to content

Commit

Permalink
chore(.clang-tidy): fix settings of readability-identifier-naming
Browse files Browse the repository at this point in the history
  • Loading branch information
kenji-miyake authored and Kenji Miyake committed Aug 29, 2022
1 parent b1e2f6e commit 3db8ed7
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -433,16 +433,20 @@ CheckOptions:
value: lower_case
- key: readability-identifier-naming.ClassCase
value: CamelCase
- key: readability-identifier-naming.PrivateMemberPrefix
value: ""
- key: readability-identifier-naming.PrivateMemberSuffix
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
value: lower_case
- key: readability-identifier-naming.GlobalConstantPrefix
value: g_
- key: readability-identifier-naming.ConstexprVariableCase
value: lower_case
- key: readability-inconsistent-declaration-parameter-name.IgnoreMacros
value: "1"
- key: readability-inconsistent-declaration-parameter-name.Strict
Expand Down

0 comments on commit 3db8ed7

Please sign in to comment.