[PATCH] D16373: .clang-tidy for sanitizer package to override root llvm style

Mike Aizatsky via llvm-commits llvm-commits at lists.llvm.org
Thu Jan 21 15:25:27 PST 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL258449: .clang-tidy for sanitizer package to override root llvm style (authored by aizatsky).

Changed prior to commit:
  http://reviews.llvm.org/D16373?vs=45441&id=45608#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D16373

Files:
  compiler-rt/trunk/lib/sanitizer_common/.clang-tidy

Index: compiler-rt/trunk/lib/sanitizer_common/.clang-tidy
===================================================================
--- compiler-rt/trunk/lib/sanitizer_common/.clang-tidy
+++ compiler-rt/trunk/lib/sanitizer_common/.clang-tidy
@@ -0,0 +1,12 @@
+Checks: '-*,clang-diagnostic-*,llvm-*,misc-*,readability-identifier-naming'
+CheckOptions:
+  - key:             readability-identifier-naming.ClassCase
+    value:           CamelCase
+  - key:             readability-identifier-naming.EnumCase
+    value:           CamelCase
+  - key:             readability-identifier-naming.FunctionCase
+    value:           CamelCase
+  - key:             readability-identifier-naming.UnionCase
+    value:           CamelCase
+  - key:             readability-identifier-naming.VariableCase
+    value:           lowerCase


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D16373.45608.patch
Type: text/x-patch
Size: 820 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160121/015ab919/attachment.bin>


More information about the llvm-commits mailing list