summaryrefslogtreecommitdiff
path: root/.clang-tidy
diff options
context:
space:
mode:
authorMike Aizatsky <aizatsky@chromium.org>2016-09-13 19:04:26 +0000
committerMike Aizatsky <aizatsky@chromium.org>2016-09-13 19:04:26 +0000
commita3d7c710d2371485845ae89e21afa695c48dcd30 (patch)
treeee2460535e26d14648c4c1d24159e2d5ef71625e /.clang-tidy
parentec4f2a0c81eec61accd6db7327b336a9e58796f8 (diff)
.clang-tidy: correct style name is 'camelBack' not 'lowerCase'.
Summary: clang-tidy doesn't like to complain. Differential Revision: https://reviews.llvm.org/D24413 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@281370 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy2
1 files changed, 1 insertions, 1 deletions
diff --git a/.clang-tidy b/.clang-tidy
index 53a5a7ebbca..2cfcc2ac22b 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -5,7 +5,7 @@ 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