-
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.
- Loading branch information
1 parent
35c992b
commit 27edc07
Showing
31 changed files
with
1,142 additions
and
28 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
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,2 +1,2 @@ | ||
# Colomb | ||
# Colomb Client | ||
A game |
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,100 @@ | ||
Language: Cpp | ||
ColumnLimit: '108' | ||
ReflowComments: true | ||
AlignAfterOpenBracket: AlwaysBreak | ||
AllowAllArgumentsOnNextLine: false | ||
AllowAllParametersOfDeclarationOnNextLine: false | ||
EmptyLineBeforeAccessModifier: Always | ||
IndentWrappedFunctionNames: 'false' | ||
AccessModifierOffset: 0 | ||
IndentAccessModifiers: true | ||
BinPackParameters: false | ||
BinPackArguments: false | ||
InsertTrailingCommas: Wrapped | ||
PackConstructorInitializers: CurrentLine | ||
AlwaysBreakTemplateDeclarations: Yes | ||
DerivePointerAlignment: true | ||
LambdaBodyIndentation: Signature | ||
AlignOperands: false | ||
BreakBeforeBraces: Custom | ||
|
||
BraceWrapping: | ||
AfterCaseLabel: false | ||
AfterControlStatement: false | ||
AfterEnum: false | ||
AfterFunction: true | ||
AfterNamespace: false | ||
AfterStruct: false | ||
AfterUnion: false | ||
AfterExternBlock: true | ||
BeforeCatch: false | ||
BeforeElse: false | ||
IndentBraces: false | ||
SplitEmptyFunction: true | ||
SplitEmptyRecord: true | ||
SplitEmptyNamespace: true | ||
|
||
AlwaysBreakAfterReturnType: None | ||
|
||
TabWidth: '4' | ||
UseTab: Never | ||
IndentPPDirectives: BeforeHash | ||
AlignConsecutiveAssignments: true | ||
AlignConsecutiveDeclarations: false | ||
AlignArrayOfStructures: 'Left' | ||
Cpp11BracedListStyle: true | ||
PointerAlignment: Right | ||
ReferenceAlignment: Right | ||
SpacesInCStyleCastParentheses: false | ||
SpaceAfterCStyleCast: true | ||
SpaceAfterLogicalNot: 'false' | ||
SpaceBeforeAssignmentOperators: 'true' | ||
SpaceBeforeParens: ControlStatements | ||
SpaceInEmptyParentheses: 'false' | ||
SpacesInAngles: false | ||
SpacesInParentheses: 'false' | ||
SpacesInSquareBrackets: 'false' | ||
SpacesInContainerLiterals: 'false' | ||
SpaceAfterTemplateKeyword: 'true' | ||
IndentCaseLabels: 'true' | ||
NamespaceIndentation: All | ||
AllowShortFunctionsOnASingleLine: None | ||
AllowShortIfStatementsOnASingleLine: Never | ||
AllowShortLambdasOnASingleLine: None | ||
AllowShortLoopsOnASingleLine: 'false' | ||
AllowShortBlocksOnASingleLine: 'true' | ||
AllowShortCaseLabelsOnASingleLine: 'true' | ||
KeepEmptyLinesAtTheStartOfBlocks: false | ||
MaxEmptyLinesToKeep: 1 | ||
AlignConsecutiveMacros: true | ||
AlignEscapedNewlines: Left | ||
AlignTrailingComments: true | ||
BreakStringLiterals: true | ||
BreakBeforeBinaryOperators: NonAssignment | ||
BreakBeforeTernaryOperators: true | ||
SortIncludes: true | ||
IncludeBlocks: Preserve | ||
IncludeCategories: | ||
- Regex: '<.+>' # System/Standard libs | ||
Priority: 1 | ||
- Regex: '"raylib.h"' # Criterion headers | ||
Priority: 2 | ||
- Regex: '"raylib-cpp.hpp"' # Criterion headers | ||
Priority: 2 | ||
- Regex: '".+"' # Any "my_header.h" | ||
Priority: 3 | ||
|
||
# Sort 'using' declarations | ||
SortUsingDeclarations: true | ||
|
||
BasedOnStyle: LLVM | ||
AlwaysBreakBeforeMultilineStrings: 'true' | ||
ContinuationIndentWidth: '4' | ||
SpaceInEmptyBlock: true | ||
IndentWidth: '4' | ||
PenaltyBreakAssignment: '0' | ||
SpaceBeforeCpp11BracedList: 'true' | ||
SpaceBeforeRangeBasedForLoopColon: 'true' | ||
|
||
# To totally disable format | ||
DisableFormat: 'false' |
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,5 @@ | ||
--- | ||
Checks: '-*,clang-diagnostic-*,clang-analyzer-*,-*,clang-analyzer-*,concurrency-*,cppcoreguidelines-*,modernize-*,portability-*,readability-*,-readability-identifier-length,-modernize-use-trailing-return-type' | ||
WarningsAsErrors: '-*,clang-diagnostic-*,clang-analyzer-*,-*,clang-analyzer-*,concurrency-*,cppcoreguidelines-*,modernize-*,portability-*,readability-*,-readability-identifier-length,-modernize-use-trailing-return-type' | ||
HeaderFilterRegex: '(src/ECS/)|(src/Client/)|(src/Server/)|(src/Nitwork/)' | ||
AnalyzeTemporaryDtors: false |
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,3 @@ | ||
/.cache/ | ||
/build | ||
/Colomb_server |
Oops, something went wrong.