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
|
||||
value: camelBack
|
||||
- key: readability-identifier-naming.PrivateMemberIgnoredRegexp
|
||||
value: .*
|
||||
- key: readability-identifier-naming.PrivateMemberSuffix
|
||||
value: _
|
||||
- key: readability-identifier-naming.ProtectedMemberSuffix
|
||||
value: _
|
||||
value: ^.*_$
|
||||
- key: readability-identifier-naming.ProtectedMemberIgnoredRegexp
|
||||
value: ^.*_$
|
||||
- key: readability-identifier-naming.UnionCase
|
||||
value: CamelCase
|
||||
- key: readability-identifier-naming.GlobalConstantCase
|
||||
|
||||
Reference in New Issue
Block a user