From ece7698b6ac655616d02c0ff7a1f975df0bfbc14 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 23 Mar 2017 08:21:18 -0700 Subject: [PATCH] Add .clang-format file --- brightray/.clang-format | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 brightray/.clang-format diff --git a/brightray/.clang-format b/brightray/.clang-format new file mode 100644 index 0000000000..6fdf1dc888 --- /dev/null +++ b/brightray/.clang-format @@ -0,0 +1,8 @@ +# Defines the Chromium style for automatic reformatting. +# http://clang.llvm.org/docs/ClangFormatStyleOptions.html +BasedOnStyle: Chromium +# This defaults to 'Auto'. Explicitly set it for a while, so that +# 'vector >' in existing files gets formatted to +# 'vector>'. ('Auto' means that clang-format will only use +# 'int>>' if the file already contains at least one such instance.) +Standard: Cpp11