-
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
0 parents
commit 914a5d6
Showing
22 changed files
with
975 additions
and
0 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,106 @@ | ||
--- | ||
BasedOnStyle: LLVM | ||
# AccessModifierOffset: -4 | ||
AlignAfterOpenBracket: Align | ||
AllowAllArgumentsOnNextLine: true | ||
AlignConsecutiveMacros: false | ||
AlignConsecutiveAssignments: false | ||
AlignConsecutiveDeclarations: false | ||
AllowAllConstructorInitializersOnNextLine: true | ||
AlignEscapedNewlines: Left | ||
AlignOperands: true | ||
# AlignTrailingComments: false | ||
AllowAllParametersOfDeclarationOnNextLine: true | ||
AllowShortBlocksOnASingleLine: Never | ||
AllowShortFunctionsOnASingleLine: All | ||
AllowShortCaseLabelsOnASingleLine: false | ||
AllowShortIfStatementsOnASingleLine: Never | ||
#AllowShortLambdasOnASingleLine: Inline | ||
AllowShortLoopsOnASingleLine: false | ||
AlwaysBreakAfterReturnType: None | ||
AlwaysBreakBeforeMultilineStrings: false | ||
AlwaysBreakTemplateDeclarations: Yes | ||
BinPackArguments: false | ||
BinPackParameters: false | ||
BraceWrapping: | ||
AfterCaseLabel: true | ||
AfterClass: true | ||
AfterControlStatement: true | ||
AfterEnum: true | ||
AfterFunction: true | ||
AfterNamespace: true | ||
AfterObjCDeclaration: true | ||
AfterStruct: true | ||
AfterUnion: true | ||
AfterExternBlock: false | ||
BeforeCatch: true | ||
BeforeElse: true | ||
IndentBraces: false | ||
SplitEmptyFunction: true | ||
SplitEmptyRecord: true | ||
SplitEmptyNamespace: true | ||
BreakBeforeBinaryOperators: None | ||
BreakBeforeBraces: Custom | ||
# BreakBeforeTernaryOperators: false | ||
BreakBeforeTernaryOperators: true | ||
BreakConstructorInitializers: AfterColon | ||
BreakInheritanceList: AfterColon | ||
ColumnLimit: 0 | ||
CommentPragmas: "suppress" | ||
CompactNamespaces: false | ||
ConstructorInitializerAllOnOneLineOrOnePerLine: true | ||
# ConstructorInitializerIndentWidth: 4 | ||
# ContinuationIndentWidth: 4 | ||
Cpp11BracedListStyle: false | ||
DeriveLineEnding: true | ||
DerivePointerAlignment: false | ||
# FixNamespaceComments: false | ||
IncludeBlocks: Regroup | ||
IncludeCategories: | ||
- Regex: '^.*(precomp|pch|stdafx)' | ||
Priority: -1 | ||
- Regex: '^".*"' | ||
Priority: 1 | ||
- Regex: '^<.*>' | ||
Priority: 2 | ||
- Regex: '.*' | ||
Priority: 3 | ||
IndentCaseLabels: false | ||
IndentPPDirectives: None | ||
IndentWidth: 2 | ||
IndentWrappedFunctionNames: false | ||
KeepEmptyLinesAtTheStartOfBlocks: false | ||
MacroBlockBegin: "BEGIN_TEST_METHOD_PROPERTIES|BEGIN_MODULE|BEGIN_TEST_CLASS|BEGIN_TEST_METHOD" | ||
MacroBlockEnd: "END_TEST_METHOD_PROPERTIES|END_MODULE|END_TEST_CLASS|END_TEST_METHOD" | ||
MaxEmptyLinesToKeep: 1 | ||
NamespaceIndentation: All | ||
PointerAlignment: Left | ||
# ReflowComments: false | ||
SortIncludes: false | ||
SortUsingDeclarations: true | ||
SpaceAfterCStyleCast: false | ||
SpaceAfterLogicalNot: false | ||
SpaceAfterTemplateKeyword: false | ||
SpaceBeforeAssignmentOperators: true | ||
SpaceBeforeCpp11BracedList: false | ||
SpaceBeforeCtorInitializerColon: true | ||
SpaceBeforeInheritanceColon: true | ||
SpaceBeforeParens: ControlStatements | ||
SpaceBeforeRangeBasedForLoopColon: true | ||
SpaceInEmptyParentheses: false | ||
# SpacesBeforeTrailingComments: 1 | ||
SpacesInAngles: false | ||
SpacesInCStyleCastParentheses: false | ||
SpacesInContainerLiterals: false | ||
SpacesInParentheses: false | ||
SpacesInSquareBrackets: false | ||
Standard: Latest | ||
TabWidth: 2 | ||
UseTab: Never | ||
# NamespaceIndentation: All | ||
# SpaceAfterTemplateKeyword: 'false' | ||
# SpaceBeforeCtorInitializerColon: 'true' | ||
# SpaceBeforeInheritanceColon: 'true' | ||
# SpaceBeforeParens: ControlStatements | ||
# SpaceBeforeRangeBasedForLoopColon: 'true' | ||
# SpaceInEmptyBlock: 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,53 @@ | ||
# The warnings below are disabled because they are too pedantic and not worth fixing. | ||
# Some of them will be enabled as part of the Clang-Tidy task, see T78535. | ||
|
||
# NOTE: No comments in the list below is allowed. Clang-tidy will ignore items after comments in the lists flag list. | ||
# This is because the comment is not a valid list item and it will stop parsing flags if a list item is a comment. | ||
Checks: > | ||
-*, | ||
readability-*, | ||
-readability-uppercase-literal-suffix, | ||
-readability-magic-numbers, | ||
-readability-isolate-declaration, | ||
-readability-convert-member-functions-to-static, | ||
-readability-implicit-bool-conversion, | ||
-readability-avoid-const-params-in-decls, | ||
-readability-simplify-boolean-expr, | ||
-readability-make-member-function-const, | ||
-readability-suspicious-call-argument, | ||
-readability-redundant-member-init, | ||
-readability-misleading-indentation, | ||
-readability-use-anyofallof, | ||
-readability-identifier-length, | ||
-readability-function-cognitive-complexity, | ||
bugprone-*, | ||
-bugprone-narrowing-conversions, | ||
-bugprone-unhandled-self-assignment, | ||
-bugprone-branch-clone, | ||
-bugprone-macro-parentheses, | ||
-bugprone-reserved-identifier, | ||
-bugprone-easily-swappable-parameters, | ||
-bugprone-implicit-widening-of-multiplication-result, | ||
-bugprone-sizeof-expression, | ||
-bugprone-integer-division, | ||
-bugprone-redundant-branch-condition, | ||
-bugprone-suspicious-include, | ||
modernize-*, | ||
-modernize-use-auto, | ||
-modernize-use-trailing-return-type, | ||
-modernize-avoid-c-arrays, | ||
-modernize-use-nodiscard, | ||
-modernize-loop-convert, | ||
-modernize-pass-by-value, | ||
-modernize-raw-string-literal, | ||
-modernize-return-braced-init-list | ||
CheckOptions: | ||
- key: modernize-use-default-member-init.UseAssignment | ||
value: 1 |
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,57 @@ | ||
format: | ||
tab_size: 2 | ||
line_width: 80 | ||
dangle_parens: true | ||
|
||
parse: | ||
additional_commands: | ||
cpmaddpackage: | ||
pargs: | ||
nargs: '*' | ||
flags: [] | ||
spelling: CPMAddPackage | ||
kwargs: &cpmaddpackagekwargs | ||
NAME: 1 | ||
FORCE: 1 | ||
VERSION: 1 | ||
GIT_TAG: 1 | ||
DOWNLOAD_ONLY: 1 | ||
GITHUB_REPOSITORY: 1 | ||
GITLAB_REPOSITORY: 1 | ||
GIT_REPOSITORY: 1 | ||
SVN_REPOSITORY: 1 | ||
SVN_REVISION: 1 | ||
SOURCE_DIR: 1 | ||
DOWNLOAD_COMMAND: 1 | ||
FIND_PACKAGE_ARGUMENTS: 1 | ||
NO_CACHE: 1 | ||
GIT_SHALLOW: 1 | ||
URL: 1 | ||
URL_HASH: 1 | ||
URL_MD5: 1 | ||
DOWNLOAD_NAME: 1 | ||
DOWNLOAD_NO_EXTRACT: 1 | ||
HTTP_USERNAME: 1 | ||
HTTP_PASSWORD: 1 | ||
OPTIONS: + | ||
cpmfindpackage: | ||
pargs: | ||
nargs: '*' | ||
flags: [] | ||
spelling: CPMFindPackage | ||
kwargs: *cpmaddpackagekwargs | ||
packageproject: | ||
pargs: | ||
nargs: '*' | ||
flags: [] | ||
spelling: packageProject | ||
kwargs: | ||
NAME: 1 | ||
VERSION: 1 | ||
NAMESPACE: 1 | ||
INCLUDE_DIR: 1 | ||
INCLUDE_DESTINATION: 1 | ||
BINARY_DIR: 1 | ||
COMPATIBILITY: 1 | ||
VERSION_HEADER: 1 | ||
DEPENDENCIES: + |
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,8 @@ | ||
.idea/ | ||
.build/ | ||
_build/ | ||
build/ | ||
build-out/ | ||
build-output/ | ||
cmake-build-*/ | ||
cmake-out/ |
Oops, something went wrong.