Skip to content

Commit

Permalink
chore(.clang-tidy): fix settings of readability-identifier-naming (#2823
Browse files Browse the repository at this point in the history
)
  • Loading branch information
kenji-miyake authored Aug 30, 2022
1 parent b6d0400 commit d04a1b9
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 @@ -432,16 +432,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 d04a1b9

Please sign in to comment.