diff options
author | Maksim Denisov <denisov.maksim@huawei.com> | 2024-10-08 11:59:11 +0200 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2024-10-08 15:41:50 +0200 |
commit | 6f03f36201fa79f3802f3235779ec5a451287e21 (patch) | |
tree | 40cd2a46e881be0d5cdbf4de215e8dcedee8ae33 /.clang-tidy | |
parent | a054488f8417a40e22c4e1e0f9738f705785aa9e (diff) | |
download | justbuild-6f03f36201fa79f3802f3235779ec5a451287e21.tar.gz |
Name static constants using kCamelCase.
Diffstat (limited to '.clang-tidy')
-rw-r--r-- | .clang-tidy | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy index e7b899d7..5fe6d074 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -54,3 +54,5 @@ CheckOptions: - { key: readability-identifier-naming.EnumCase, value: CamelCase } - { key: readability-identifier-naming.StructCase, value: CamelCase } - { key: readability-identifier-naming.TypeTemplateParameterCase, value: CamelCase } + - { key: readability-identifier-naming.StaticConstantCase, value: CamelCase } + - { key: readability-identifier-naming.StaticConstantPrefix, value: k } |