##// END OF EJS Templates
Refac + clang-format...
Refac + clang-format Clang format: changed style to have line break on each brace refac: more VisualisationGraphWidget work, zone move still broken Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1365:19075a214d07
r1365:19075a214d07
Show More
.clang-format
26 lines | 613 B | text/plain | TextLexer
---
# See http://clang.llvm.org/docs/ClangFormatStyleOptions.html for a definition
# of the options
Language: Cpp
BasedOnStyle: WebKit
# Line length
ColumnLimit: 100
# Indent with 4 spaces
IndentWidth: 4
AccessModifierOffset: -4 # -IndentWidth
ConstructorInitializerIndentWidth: 8 # 2 * IndentWidth
BreakBeforeBraces: Allman
AllowShortFunctionsOnASingleLine: Inline
AlwaysBreakTemplateDeclarations: true
AlwaysBreakBeforeMultilineStrings: true
BreakBeforeBinaryOperators: true
ConstructorInitializerAllOnOneLineOrOnePerLine: true
IndentCaseLabels: true
MaxEmptyLinesToKeep: 2
Standard: Cpp11
UseTab: Never