summaryrefslogtreecommitdiff
path: root/.clang-tidy
diff options
context:
space:
mode:
authorIlya Biryukov <ibiryukov@google.com>2018-03-20 14:39:12 +0000
committerIlya Biryukov <ibiryukov@google.com>2018-03-20 14:39:12 +0000
commit34d9e8f0cdd532b7e3e5fd99633aa35896f56c45 (patch)
treee20142b845a58e495c725d3fe2aa8e01addb059c /.clang-tidy
parent167b1f1859885d01c4bb71f63e56405b3321ab45 (diff)
downloadclang-34d9e8f0cdd532b7e3e5fd99633aa35896f56c45.tar.gz
Backport changes from llvm/.clang_tidy to clang/.clang_tidy configs
Summary: LLVM .clang_tidy seems to be more up-to-date. Reviewers: alexfh, simark Reviewed By: alexfh Subscribers: simark, cfe-commits Differential Revision: https://reviews.llvm.org/D44628 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@327984 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy7
1 files changed, 6 insertions, 1 deletions
diff --git a/.clang-tidy b/.clang-tidy
index d10f688e59..2cfcc2ac22 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -5,8 +5,13 @@ CheckOptions:
- key: readability-identifier-naming.EnumCase
value: CamelCase
- key: readability-identifier-naming.FunctionCase
- value: lowerCase
+ value: camelBack
+ - key: readability-identifier-naming.MemberCase
+ value: CamelCase
+ - key: readability-identifier-naming.ParameterCase
+ value: CamelCase
- key: readability-identifier-naming.UnionCase
value: CamelCase
- key: readability-identifier-naming.VariableCase
value: CamelCase
+