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
|
- 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
|
||||||
|
|
Loading…
Reference in a new issue