aboutsummaryrefslogtreecommitdiff
path: root/.clang-format
diff options
context:
space:
mode:
author Conor Allison <conoboy137@hotmail.co.uk>2024-03-03 12:08:00 +0100
committer Conor Allison <conoboy137@hotmail.co.uk>2024-03-03 12:08:00 +0100
commitb29e3b4d5c18c26efe2d531ca4decc94d0810b61 (patch)
tree39a7297aae3cbd85a1107236025b999a6e6d63fb /.clang-format
parent92a43a51c898e42e7290c1e2421f57d9b9500a16 (diff)
Tech loading from sim
Wrote C++ functions to get tech data loading from the sim to godot
Diffstat (limited to '.clang-format')
-rw-r--r--.clang-format88
1 files changed, 0 insertions, 88 deletions
diff --git a/.clang-format b/.clang-format
deleted file mode 100644
index dea31ab..0000000
--- a/.clang-format
+++ /dev/null
@@ -1,88 +0,0 @@
----
-Language: Cpp
-UseCRLF: false
-Standard: c++20
-UseTab: Always
-TabWidth: 4
-IndentWidth: 4
-ColumnLimit: 128
-PointerAlignment: Left
-DerivePointerAlignment: false
-SpacesInSquareBrackets: false
-SpacesInParentheses: false
-SpacesInCStyleCastParentheses: false
-SpacesInContainerLiterals: false
-SpacesInConditionalStatement: false
-SpacesInAngles: false
-SpaceInEmptyParentheses: false
-SpaceInEmptyBlock: false
-SpacesInParens: Never
-SpaceBeforeSquareBrackets: false
-SpaceBeforeRangeBasedForLoopColon: true
-SpaceBeforeParens: ControlStatements
-SpaceBeforeInheritanceColon: true
-SpaceBeforeCtorInitializerColon: true
-SpaceBeforeCpp11BracedList: true
-SpaceBeforeAssignmentOperators: true
-SpaceAfterTemplateKeyword: false
-SpaceAfterLogicalNot: false
-PackConstructorInitializers: BinPack
-NamespaceIndentation: All
-#LambdaBodyIndentation: Signature
-IndentExternBlock: Indent
-IndentCaseBlocks: false
-IndentCaseLabels: false
-IndentAccessModifiers: false
-IndentRequiresClause: false
-IncludeBlocks: Regroup
-FixNamespaceComments: false
-EmptyLineBeforeAccessModifier: LogicalBlock
-Cpp11BracedListStyle: false
-CompactNamespaces: false
-BreakConstructorInitializers: BeforeColon
-BreakBeforeBraces: Attach
-AlwaysBreakTemplateDeclarations: Yes
-AlwaysBreakAfterReturnType: None
-PenaltyReturnTypeOnItsOwnLine: 10
-BreakBeforeConceptDeclarations: Always
-AllowShortLambdasOnASingleLine: Empty
-AllowShortIfStatementsOnASingleLine: Never
-AllowShortEnumsOnASingleLine: true
-AllowShortCaseLabelsOnASingleLine: true
-AllowShortBlocksOnASingleLine: Empty
-AllowShortCompoundRequirementOnASingleLine: true
-AllowShortFunctionsOnASingleLine: Empty
-AllowShortLoopsOnASingleLine: false
-AlignTrailingComments:
- Kind: Never
- OverEmptyLines: 0
-AlignEscapedNewlines: DontAlign
-AlignAfterOpenBracket: BlockIndent
-AlignOperands: DontAlign
-AlignConsecutiveShortCaseStatements:
- Enabled: true
- AcrossEmptyLines: true
- AcrossComments: true
- AlignCaseColons: false
-BinPackArguments: true
-BinPackParameters: true
-AccessModifierOffset: -4
-InsertNewlineAtEOF: true
-InsertBraces: true
-MaxEmptyLinesToKeep: 2
-RequiresClausePosition: OwnLine
-IncludeCategories:
- - Regex: <[[:alnum:]_]+>
- Priority: 1
- - Regex: <[[:alnum:]_]+[.]h>
- Priority: 2
- - Regex: ^<godot_cpp/
- Priority: 3
- - Regex: ^<openvic-dataloader/
- Priority: 4
- - Regex: ^<openvic-simulation/
- Priority: 5
- - Regex: ^"openvic-extension/
- Priority: 6
- - Regex: .*
- Priority: 7