mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
clang-tidy: Make protected & private suffix underscore optional (#5090)
This commit is contained in:
parent
93e2bc18fa
commit
47a14c9041
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue