-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing output of strings with non printable characters
closes #66 closes #63 + Disable shortcut in `jump` and add check for strings only containing spaces in output + Added tests from issues + version bump pipeline to avoid deprecation warning + add formatting + re introduced ink proof result label
- Loading branch information
Showing
16 changed files
with
2,291 additions
and
2,066 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,99 @@ | ||
--- | ||
AccessModifierOffset: -2 | ||
AlignAfterOpenBracket: BlockIndent | ||
AlignArrayOfStructures: Right | ||
# readd padOperation if bumped from clang 14 | ||
AlignConsecutiveAssignments: AcrossComments | ||
AlignConsecutiveBitFields: AcrossComments | ||
AlignConsecutiveDeclarations: AcrossComments | ||
AlignConsecutiveMacros: AcrossComments | ||
AlignEscapedNewlines: Left | ||
AlignOperands: AlignAfterOperator | ||
AlignTrailingComments: true | ||
AllowAllArgumentsOnNextLine: true | ||
AllowAllParametersOfDeclarationOnNextLine: true | ||
AllowShortBlocksOnASingleLine: Always | ||
AllowShortCaseLabelsOnASingleLine: true | ||
AllowShortEnumsOnASingleLine: false | ||
AllowShortFunctionsOnASingleLine: Inline | ||
AllowShortIfStatementsOnASingleLine: Never | ||
AllowShortLambdasOnASingleLine: Inline | ||
AllowShortLoopsOnASingleLine: false | ||
AlwaysBreakAfterReturnType: None | ||
AlwaysBreakBeforeMultilineStrings: true | ||
AlwaysBreakTemplateDeclarations: Yes | ||
BinPackArguments: true | ||
BinPackParameters: true | ||
BreakBeforeBraces: Linux | ||
# BreakAfterAttributes: Always | ||
BreakBeforeBinaryOperators: All | ||
UseTab: ForIndentation | ||
Standard: Latest | ||
SpacesInSquareBrackets: false | ||
SpacesInParentheses: false | ||
SpacesInLineCommentPrefix: | ||
Minimum: 1 | ||
Maximum: 1 | ||
SpacesInContainerLiterals: false | ||
SpacesInConditionalStatement: false | ||
SpacesInCStyleCastParentheses: true | ||
SpacesInAngles: Never | ||
SpacesBeforeTrailingComments: 1 | ||
SpaceInEmptyParentheses: false | ||
SpaceInEmptyBlock: false | ||
SpaceBeforeSquareBrackets: false | ||
SpaceBeforeRangeBasedForLoopColon: true | ||
SpaceBeforeParens: ControlStatements | ||
SpaceBeforeInheritanceColon: true | ||
SpaceBeforeCtorInitializerColon: true | ||
SpaceBeforeCpp11BracedList: false | ||
SpaceBeforeCaseColon: false | ||
SpaceBeforeAssignmentOperators: true | ||
SpaceAroundPointerQualifiers: Before | ||
PointerAlignment: Left | ||
SpaceAfterTemplateKeyword: false | ||
SpaceAfterLogicalNot: true | ||
SpaceAfterCStyleCast: true | ||
SortUsingDeclarations: false | ||
SortIncludes: Never | ||
ShortNamespaceLines: 0 | ||
SeparateDefinitionBlocks: Always | ||
# RequiresExpressionIndentation: OuterScope | ||
# BreakBeforeConceptDeclarations: Always | ||
# BreakBeforeInlineASMColon: Always | ||
BreakBeforeTernaryOperators: true | ||
BreakConstructorInitializers: BeforeComma | ||
BreakInheritanceList: BeforeComma | ||
BreakStringLiterals: true | ||
ColumnLimit: 100 | ||
CompactNamespaces: true | ||
Cpp11BracedListStyle: true | ||
EmptyLineBeforeAccessModifier: Always | ||
FixNamespaceComments: true | ||
IncludeBlocks: Preserve | ||
IndentAccessModifiers: false | ||
IndentCaseBlocks: false | ||
IndentCaseLabels: true | ||
IndentExternBlock: Indent | ||
IndentGotoLabels: false | ||
IndentPPDirectives: AfterHash | ||
# IndentRequiresClause: true | ||
IndentWidth: 2 | ||
TabWidth: 2 | ||
IndentWrappedFunctionNames: true | ||
# InsertBraces: true | ||
# InsertNewlineAtEOF: true | ||
KeepEmptyLinesAtTheStartOfBlocks: true | ||
LambdaBodyIndentation: Signature | ||
Language: Cpp | ||
# LineEnding: LF | ||
MaxEmptyLinesToKeep: 2 | ||
NamespaceIndentation: Inner | ||
QualifierAlignment: Left | ||
ReferenceAlignment: Left | ||
ReflowComments: true | ||
RemoveBracesLLVM: false | ||
# RemoveSemicolon: false | ||
# RequiresClausePosition: OwnLine | ||
UseCRLF: false | ||
DeriveLineEnding: 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
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
Oops, something went wrong.