clang-tidy: Make protected & private suffix underscore optional (#5090)
This commit is contained in:
+3
-5
@@ -45,11 +45,9 @@ CheckOptions:
|
|||||||
- key: readability-identifier-naming.MemberCase
|
- key: readability-identifier-naming.MemberCase
|
||||||
value: camelBack
|
value: camelBack
|
||||||
- key: readability-identifier-naming.PrivateMemberIgnoredRegexp
|
- key: readability-identifier-naming.PrivateMemberIgnoredRegexp
|
||||||
value: .*
|
value: ^.*_$
|
||||||
- key: readability-identifier-naming.PrivateMemberSuffix
|
- key: readability-identifier-naming.ProtectedMemberIgnoredRegexp
|
||||||
value: _
|
value: ^.*_$
|
||||||
- key: readability-identifier-naming.ProtectedMemberSuffix
|
|
||||||
value: _
|
|
||||||
- key: readability-identifier-naming.UnionCase
|
- key: readability-identifier-naming.UnionCase
|
||||||
value: CamelCase
|
value: CamelCase
|
||||||
- key: readability-identifier-naming.GlobalConstantCase
|
- key: readability-identifier-naming.GlobalConstantCase
|
||||||
|
|||||||
Reference in New Issue
Block a user