Skip to content
This repository has been archived by the owner on Sep 2, 2018. It is now read-only.

Commit

Permalink
.clang-tidy: parameters and members should be CamelCased.
Browse files Browse the repository at this point in the history
Summary: Not sure why is it missing.

Differential Revision: https://reviews.llvm.org/D24364

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@281002 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
aizatsky-chromium committed Sep 8, 2016
1 parent 8aad291 commit e0cbb68
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ CheckOptions:
value: CamelCase
- key: readability-identifier-naming.FunctionCase
value: lowerCase
- 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
Expand Down

0 comments on commit e0cbb68

Please sign in to comment.