aboutsummaryrefslogtreecommitdiff
path: root/src/.clang-format
diff options
context:
space:
mode:
Diffstat (limited to 'src/.clang-format')
-rw-r--r--src/.clang-format17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/.clang-format b/src/.clang-format
new file mode 100644
index 0000000..5d305ae
--- /dev/null
+++ b/src/.clang-format
@@ -0,0 +1,17 @@
1# Format Style Options - Created with Clang Power Tools
2---
3BasedOnStyle: WebKit
4AllowShortCaseLabelsOnASingleLine: true
5AllowShortIfStatementsOnASingleLine: WithoutElse
6AllowShortLoopsOnASingleLine: true
7BreakBeforeBraces: Attach
8Cpp11BracedListStyle: true
9IndentCaseLabels: true
10NamespaceIndentation: None
11SpaceBeforeCpp11BracedList: false
12TabWidth: 4
13AlignEscapedNewlines: DontAlign
14AlwaysBreakBeforeMultilineStrings: true
15FixNamespaceComments: true
16UseTab: Always
17...