aboutsummaryrefslogtreecommitdiff
path: root/ui.qt/.clang-format
diff options
context:
space:
mode:
Diffstat (limited to 'ui.qt/.clang-format')
-rw-r--r--ui.qt/.clang-format55
1 files changed, 0 insertions, 55 deletions
diff --git a/ui.qt/.clang-format b/ui.qt/.clang-format
deleted file mode 100644
index 841dce2..0000000
--- a/ui.qt/.clang-format
+++ /dev/null
@@ -1,55 +0,0 @@
-BasedOnStyle: LLVM
-AccessModifierOffset: -4
-AlignAfterOpenBracket: DontAlign
-AlignOperands: false
-AlignTrailingComments: false
-AllowAllParametersOfDeclarationOnNextLine: true
-AllowAllArgumentsOnNextLine: true
-AllowShortCaseLabelsOnASingleLine: true
-AllowShortFunctionsOnASingleLine: Inline
-AllowShortIfStatementsOnASingleLine: true
-AlwaysBreakTemplateDeclarations: MultiLine
-BinPackArguments: false
-BinPackParameters: false
-BraceWrapping:
- AfterClass: true
- AfterControlStatement: MultiLine
- AfterEnum: false
- AfterFunction: true
- AfterNamespace: true
- AfterObjCDeclaration: false
- AfterStruct: true
- AfterUnion: false
- AfterExternBlock: false
- BeforeCatch: false
- BeforeElse: false
- IndentBraces: false
- SplitEmptyFunction: true
- SplitEmptyRecord: true
- SplitEmptyNamespace: true
-BreakBeforeBraces: Custom
-BreakBeforeTernaryOperators: true
-BreakConstructorInitializers: BeforeComma
-ColumnLimit: 0
-ConstructorInitializerAllOnOneLineOrOnePerLine: true
-ConstructorInitializerIndentWidth: 4
-ContinuationIndentWidth: 4
-Cpp11BracedListStyle: false
-IncludeCategories:
- - Regex: '".*"'
- Priority: 1
- - Regex: '^<.*\.h>'
- Priority: 2
- - Regex: '^<.*'
- Priority: 3
-IndentCaseLabels: true
-IndentPPDirectives: AfterHash
-IndentWidth: 4
-NamespaceIndentation: Inner
-PointerAlignment: Left
-TabWidth: 4
-UseTab: Always
----
-### C++ specific config ###
-Language: Cpp
-Standard: Cpp11