Initial commit
This commit is contained in:
37
.clang-format
Normal file
37
.clang-format
Normal file
@@ -0,0 +1,37 @@
|
||||
---
|
||||
# This configuration requires clang-format 3.8 or higher.
|
||||
Language: Cpp
|
||||
BasedOnStyle: Mozilla
|
||||
AlwaysBreakAfterReturnType: None
|
||||
AlwaysBreakAfterDefinitionReturnType: None
|
||||
BreakConstructorInitializersBeforeComma: false
|
||||
AccessModifierOffset: '0'
|
||||
AlignAfterOpenBracket: Align
|
||||
AlignConsecutiveAssignments: 'true'
|
||||
AlignConsecutiveDeclarations: 'true'
|
||||
AlignEscapedNewlines: Left
|
||||
AlignOperands: 'true'
|
||||
AlignTrailingComments: 'true'
|
||||
AllowAllParametersOfDeclarationOnNextLine: 'false'
|
||||
AllowShortCaseLabelsOnASingleLine: 'false'
|
||||
AllowShortFunctionsOnASingleLine: Empty
|
||||
AllowShortLoopsOnASingleLine: 'false'
|
||||
AlwaysBreakBeforeMultilineStrings: 'false'
|
||||
BreakBeforeBraces: Allman
|
||||
BreakBeforeTernaryOperators: 'true'
|
||||
ColumnLimit: '0'
|
||||
FixNamespaceComments: 'true'
|
||||
IncludeBlocks: Regroup
|
||||
IndentCaseLabels: 'true'
|
||||
IndentPPDirectives: AfterHash
|
||||
IndentWidth: '2'
|
||||
NamespaceIndentation: None
|
||||
PointerAlignment: Right
|
||||
ReflowComments: 'true'
|
||||
SortIncludes: 'true'
|
||||
SortUsingDeclarations: 'true'
|
||||
SpacesBeforeTrailingComments: 5
|
||||
TabWidth: '2'
|
||||
UseTab: Never
|
||||
|
||||
...
|
||||
35
.gitignore
vendored
Normal file
35
.gitignore
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
# Ignore build folters
|
||||
bin/
|
||||
obj/
|
||||
out/
|
||||
archives/
|
||||
tmp/
|
||||
|
||||
# Ignore IDE user files / folders
|
||||
.vs/
|
||||
enc_temp_folder/
|
||||
*.aps
|
||||
*.depend
|
||||
*.db-journal
|
||||
*.layout
|
||||
*.opensdf
|
||||
*.sdf
|
||||
*.suo
|
||||
*.user
|
||||
*.filters
|
||||
|
||||
# Ignore compiled user files
|
||||
*.dat
|
||||
*.pdf
|
||||
*.db
|
||||
|
||||
#------------------------
|
||||
# Temporary excludes from GIT
|
||||
aggregoViewer/
|
||||
binaryResources/
|
||||
dataConverter/
|
||||
mathAnalysis_dll
|
||||
*.ods
|
||||
*.zip
|
||||
*.xlsx
|
||||
*.bkp
|
||||
Reference in New Issue
Block a user