20 lines
398 B
Text
20 lines
398 B
Text
![]() |
---
|
||
|
BasedOnStyle: LLVM
|
||
|
IndentWidth: 2
|
||
|
|
||
|
# If function declarations have brace on the new line like this:
|
||
|
# void function()
|
||
|
# {
|
||
|
# ...
|
||
|
# }
|
||
|
BreakBeforeBraces: Allman
|
||
|
|
||
|
# If function declarations have brace on the same line like this:
|
||
|
# void function() {
|
||
|
# ...
|
||
|
# }
|
||
|
# BreakBeforeBraces: Attach
|
||
|
|
||
|
AllowShortIfStatementsOnASingleLine: false
|
||
|
BinPackParameters: true
|
||
|
ColumnLimit: 0 # Disable line column limit
|