aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.clang-format
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-01-13 03:05:35 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2020-01-13 08:18:20 +0300
commit5deab1637f6233c2b1a2b0d3db84448a5b74124e (patch)
treedd8c4c9ee903e69c97f3a61d0fe424c28d4f8950 /.clang-format
parentupdate cmake-common (diff)
downloadmath-server-5deab1637f6233c2b1a2b0d3db84448a5b74124e.tar.gz
math-server-5deab1637f6233c2b1a2b0d3db84448a5b74124e.zip
Travis: run clang-format
Diffstat (limited to '.clang-format')
-rw-r--r--.clang-format23
1 files changed, 23 insertions, 0 deletions
diff --git a/.clang-format b/.clang-format
new file mode 100644
index 0000000..728969c
--- /dev/null
+++ b/.clang-format
@@ -0,0 +1,23 @@
+---
+Language: Cpp
+BasedOnStyle: Chromium
+
+AccessModifierOffset: -4
+BreakStringLiterals: false
+ColumnLimit: 100
+IncludeBlocks: Regroup
+IndentWidth: 4
+SpacesBeforeTrailingComments: 1
+
+IncludeCategories:
+ - Regex: '^".*'
+ Priority: 1
+ - Regex: '^<(server|lexer)/'
+ Priority: 2
+ - Regex: '^<benchmark/'
+ Priority: 3
+ - Regex: '^<boost/'
+ Priority: 4
+ - Regex: '*.'
+ Priority: 5
+...