summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVadim Bendebury <vbendeb@chromium.org>2019-03-01 10:04:10 -0800
committerchrome-bot <chrome-bot@chromium.org>2019-03-01 23:41:20 -0800
commit56fcb2c97fbde8b1d23c05d15ab66f3311b81a6a (patch)
tree9278cd5196f29aab2306685716c53d10bfcdccdb
parent632d38062ef96333abc5529180d5d3a7841fe114 (diff)
downloadchrome-ec-56fcb2c97fbde8b1d23c05d15ab66f3311b81a6a.tar.gz
.clang-format: sort included style options
This is a no-op change making it easier to look up included style options. BRANCH=none BUG=none TEST=none Change-Id: I5bc1e2c436ffbfef8bd1b28acf77fc34f180f39c Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/1496203 Reviewed-by: Raul E Rangel <rrangel@chromium.org>
-rw-r--r--.clang-format12
1 files changed, 6 insertions, 6 deletions
diff --git a/.clang-format b/.clang-format
index 16d606b384..6016fe522d 100644
--- a/.clang-format
+++ b/.clang-format
@@ -1,10 +1,10 @@
-BasedOnStyle: LLVM
Language: Cpp
-IndentWidth: 8
-UseTab: Always
-BreakBeforeBraces: Linux
AllowShortIfStatementsOnASingleLine: false
+BasedOnStyle: LLVM
+BreakBeforeBraces: Linux
+ColumnLimit: 80
+ContinuationIndentWidth: 8
IndentCaseLabels: false
+IndentWidth: 8
SortIncludes: false
-ContinuationIndentWidth: 8
-ColumnLimit: 80
+UseTab: Always