-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* parser can parse passed in string * parser string parsing looks cleaner * fixes #54 implement value skill and adjust slightly how nulls are calculated * renaming and addressing magic numbers. also initial ideas on a clang-format
- Loading branch information
1 parent
5f3e623
commit 1b6472c
Showing
15 changed files
with
393 additions
and
136 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,30 @@ | ||
BasedOnStyle: LLVM | ||
IndentWidth: 4 | ||
UseTab: Always | ||
TabWidth: 4 | ||
BreakBeforeBraces: Allman | ||
AllowShortBlocksOnASingleLine: Always | ||
|
||
AlignConsecutiveAssignments: true | ||
AlignConsecutiveDeclarations: true | ||
|
||
Language: Cpp | ||
|
||
## Naming conventions | ||
# | ||
#Cpp: | ||
# Naming: | ||
# ClassCase: PascalCase | ||
# MethodCase: PascalCase | ||
# VariableCase: lower_case | ||
# ParameterCase: lower_case | ||
# MemberCase: m_lower_case | ||
# ConstantCase: UPPER_CASE | ||
# EnumCase: UPPER_CASE | ||
# | ||
## Custom prefixes | ||
#PrefixClasses: BMC_ | ||
#PrefixStructs: BMC_ | ||
#PrefixEnums: BMC_ | ||
#PrefixUnions: BMC_ | ||
#PrefixInterfaces: BMC_ |
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
Oops, something went wrong.