diff options
author | Maksim Denisov <denisov.maksim@huawei.com> | 2024-10-08 09:16:13 +0200 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2024-10-08 15:41:50 +0200 |
commit | 6832ded200f7a563b9e2cf81148fd26fdb064fdd (patch) | |
tree | 0f7aff13b0ac63dd16b15ff9329dbc2529355aa6 /.clang-tidy | |
parent | db5519c663ad119a47cb7747f80109267c301156 (diff) | |
download | justbuild-6832ded200f7a563b9e2cf81148fd26fdb064fdd.tar.gz |
Name classes, structs and enums using CamelCase.
Diffstat (limited to '.clang-tidy')
-rw-r--r-- | .clang-tidy | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy index cb4ed9fc..a536a22b 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -50,3 +50,6 @@ Checks: >- WarningsAsErrors: '*' CheckOptions: - { key: misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic, value: '1' } + - { key: readability-identifier-naming.ClassCase, value: CamelCase } + - { key: readability-identifier-naming.EnumCase, value: CamelCase } + - { key: readability-identifier-naming.StructCase, value: CamelCase } |