-
Notifications
You must be signed in to change notification settings - Fork 905
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: scaffolding for enabling code formatting
Signed-off-by: Andrea Terzolo <[email protected]>
- Loading branch information
1 parent
bc7394b
commit 55069c8
Showing
10 changed files
with
650 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,36 @@ | ||
--- | ||
Language: Cpp | ||
BasedOnStyle: LLVM | ||
AccessModifierOffset: -8 | ||
BreakBeforeBraces: Allman | ||
BasedOnStyle: Google | ||
AccessModifierOffset: -4 | ||
BreakBeforeBraces: Attach | ||
AllowAllArgumentsOnNextLine: false | ||
AllowAllConstructorInitializersOnNextLine: false | ||
AllowAllParametersOfDeclarationOnNextLine: false | ||
AllowShortFunctionsOnASingleLine: Inline | ||
AllowShortIfStatementsOnASingleLine: Never | ||
AllowShortLoopsOnASingleLine: false | ||
BinPackArguments: false | ||
BinPackParameters: false | ||
ColumnLimit: 100 | ||
DerivePointerBinding: false | ||
IndentCaseLabels: false | ||
IndentWidth: 4 | ||
SpaceAfterTemplateKeyword: false | ||
TabWidth: 4 | ||
UseTab: ForIndentation | ||
BreakConstructorInitializers: AfterColon | ||
ColumnLimit: 0 | ||
ConstructorInitializerIndentWidth: 8 | ||
ContinuationIndentWidth: 8 | ||
DerivePointerAlignment: true | ||
IndentWidth: 8 | ||
SortIncludes: false | ||
SpaceAfterTemplateKeyword: false | ||
SortIncludes: Never | ||
SpaceBeforeCtorInitializerColon: false | ||
SpaceBeforeParens: Never | ||
UseTab: Always | ||
InsertNewlineAtEOF: true | ||
--- | ||
Language: Proto | ||
DisableFormat: true | ||
--- | ||
Language: JavaScript | ||
DisableFormat: true | ||
--- | ||
Language: Java | ||
DisableFormat: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Add here new files to ignore |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.