apps
core
deps
docs
src
tools
.clang-format
.dockerignore
.git-blame-ignore-revs
.gitignore
.prettierignore
.prettierrc.yaml
Dockerfile
Doxyfile
GNUmakefile
LICENSE
README.md
package-lock.json
package.json
21 lines
517 B
Plaintext
21 lines
517 B
Plaintext
|
# Format Style Options - Created with Clang Power Tools
|
||
|
---
|
||
|
BasedOnStyle: WebKit
|
||
|
AlignEscapedNewlines: DontAlign
|
||
|
AlignOperands: DontAlign
|
||
|
AllowShortCaseLabelsOnASingleLine: false
|
||
|
AllowShortFunctionsOnASingleLine: false
|
||
|
BreakBeforeBinaryOperators: None
|
||
|
BreakBeforeBraces: Allman
|
||
|
ColumnLimit: 180
|
||
|
ContinuationIndentWidth: 4
|
||
|
IndentCaseBlocks: true
|
||
|
IndentWidth: 4
|
||
|
MaxEmptyLinesToKeep: 1
|
||
|
ObjCBlockIndentWidth: 4
|
||
|
ObjCBreakBeforeNestedBlockParam: false
|
||
|
SortIncludes: false
|
||
|
TabWidth: 4
|
||
|
UseTab: Always
|
||
|
...
|