-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
42 additions
and
12 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
BasedOnStyle: Microsoft | ||
IndentWidth: 4 | ||
UseTab: Never | ||
MaxEmptyLinesToKeep: 2 # for me, 2 empty lines were so common. | ||
BreakBeforeBraces: Linux # it's my first guide of style, so I'll keep it. | ||
AllowShortIfStatementsOnASingleLine: Never | ||
IndentCaseLabels: false | ||
IncludeBlocks: Preserve # because google c++ guide specifies the order of #include blocks. | ||
SortIncludes: CaseInsensitive | ||
ColumnLimit: 120 # same as Microsoft, don't ask me, I just think it's great. | ||
BinPackParameters: true # MS also seted this, but I saw this config. | ||
AlignAfterOpenBracket: Align # TBD, now same as Microsoft. | ||
AlignTrailingComments: # TBD, so don't change my code now. | ||
Kind: Leave | ||
OverEmptyLines: 0 | ||
... |
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
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
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