summaryrefslogtreecommitdiff
path: root/.clang-tidy
diff options
context:
space:
mode:
authorMaksim Denisov <denisov.maksim@huawei.com>2024-10-08 09:16:13 +0200
committerMaksim Denisov <denisov.maksim@huawei.com>2024-10-08 15:41:50 +0200
commit6832ded200f7a563b9e2cf81148fd26fdb064fdd (patch)
tree0f7aff13b0ac63dd16b15ff9329dbc2529355aa6 /.clang-tidy
parentdb5519c663ad119a47cb7747f80109267c301156 (diff)
downloadjustbuild-6832ded200f7a563b9e2cf81148fd26fdb064fdd.tar.gz
Name classes, structs and enums using CamelCase.
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy3
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 }