﻿Language: Cpp
BasedOnStyle: WebKit
Standard: Cpp11
TabWidth: 4
ColumnLimit: 100
SortIncludes: true

# Mostly 'Linux' style but with different enums
BreakBeforeBraces: Custom
BraceWrapping:
  AfterEnum: true
  AfterStruct: true
  AfterClass: true
  AfterCaseLabel: true
  AfterFunction: true

PointerAlignment: Left
AlignAfterOpenBracket: Align
AlignTrailingComments: true
AllowAllParametersOfDeclarationOnNextLine: false
AllowShortFunctionsOnASingleLine: None
AlwaysBreakBeforeMultilineStrings: true
BinPackArguments: false
BinPackParameters: false
BreakBeforeBinaryOperators: None
Cpp11BracedListStyle: true
KeepEmptyLinesAtTheStartOfBlocks: true
NamespaceIndentation: None
SpaceAfterTemplateKeyword: false
AlignConsecutiveDeclarations: false
