-
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 38843e2
Showing
48 changed files
with
3,167 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,90 @@ | ||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
|
||
[*.idl] | ||
indent_style = tab | ||
indent_size = 4 | ||
charset = utf-8 | ||
|
||
[*.{cpp,h,hpp,inl}] | ||
indent_style = tab | ||
indent_size = 4 | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
|
||
cpp_indent_braces = false | ||
cpp_indent_multi_line_relative_to = innermost_parenthesis | ||
cpp_indent_within_parentheses = align_to_parenthesis | ||
cpp_indent_preserve_within_parentheses = true | ||
cpp_indent_case_contents = true | ||
cpp_indent_case_labels = false | ||
cpp_indent_case_contents_when_block = false | ||
cpp_indent_lambda_braces_when_parameter = true | ||
cpp_indent_goto_labels = one_left | ||
cpp_indent_preprocessor = leftmost_column | ||
cpp_indent_access_specifiers = false | ||
cpp_indent_namespace_contents = true | ||
cpp_indent_preserve_comments = false | ||
cpp_new_line_before_open_brace_namespace = same_line | ||
cpp_new_line_before_open_brace_type = same_line | ||
cpp_new_line_before_open_brace_function = same_line | ||
cpp_new_line_before_open_brace_block = same_line | ||
cpp_new_line_before_open_brace_lambda = same_line | ||
cpp_new_line_scope_braces_on_separate_lines = true | ||
cpp_new_line_close_brace_same_line_empty_type = true | ||
cpp_new_line_close_brace_same_line_empty_function = true | ||
cpp_new_line_before_catch = false | ||
cpp_new_line_before_else = false | ||
cpp_new_line_before_while_in_do_while = false | ||
cpp_space_before_function_open_parenthesis = remove | ||
cpp_space_within_parameter_list_parentheses = false | ||
cpp_space_between_empty_parameter_list_parentheses = false | ||
cpp_space_after_keywords_in_control_flow_statements = true | ||
cpp_space_within_control_flow_statement_parentheses = false | ||
cpp_space_before_lambda_open_parenthesis = false | ||
cpp_space_within_cast_parentheses = false | ||
cpp_space_after_cast_close_parenthesis = false | ||
cpp_space_within_expression_parentheses = false | ||
cpp_space_before_block_open_brace = true | ||
cpp_space_between_empty_braces = true | ||
cpp_space_before_initializer_list_open_brace = true | ||
cpp_space_within_initializer_list_braces = true | ||
cpp_space_preserve_in_initializer_list = true | ||
cpp_space_before_open_square_bracket = false | ||
cpp_space_within_square_brackets = false | ||
cpp_space_before_empty_square_brackets = false | ||
cpp_space_between_empty_square_brackets = false | ||
cpp_space_group_square_brackets = true | ||
cpp_space_within_lambda_brackets = false | ||
cpp_space_between_empty_lambda_brackets = false | ||
cpp_space_before_comma = false | ||
cpp_space_after_comma = true | ||
cpp_space_remove_around_member_operators = true | ||
cpp_space_before_inheritance_colon = false | ||
cpp_space_before_constructor_colon = false | ||
cpp_space_remove_before_semicolon = true | ||
cpp_space_after_semicolon = true | ||
cpp_space_remove_around_unary_operator = true | ||
cpp_space_around_binary_operator = insert | ||
cpp_space_around_assignment_operator = insert | ||
cpp_space_pointer_reference_alignment = left | ||
cpp_space_around_ternary_operator = insert | ||
cpp_wrap_preserve_blocks = one_liners | ||
|
||
[*.xaml] | ||
charset = utf-8 | ||
end_of_line = lf | ||
trim_trailing_whitespace = true | ||
|
||
[*.{sln}] | ||
charset = utf-8-bom | ||
end_of_line = crlf | ||
trim_trailing_whitespace = true | ||
|
||
[*.{vcxproj,vcxproj.filters,wapproj}] | ||
charset = utf-8 | ||
end_of_line = crlf | ||
trim_trailing_whitespace = 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,25 @@ | ||
# Files which are explicitly binary | ||
*.gif binary filter=lfs diff=lfs merge=lfs !eol | ||
*.jpg binary filter=lfs diff=lfs merge=lfs !eol | ||
*.png binary filter=lfs diff=lfs merge=lfs !eol | ||
|
||
# Files normalized to always keep Unix line endings | ||
.editorconfig text encoding=utf-8 eol=lf | ||
.gitattributes text encoding=utf-8 eol=lf | ||
.gitignore text encoding=utf-8 eol=lf | ||
*.txt text encoding=utf-8 eol=lf | ||
*.md text encoding=utf-8 eol=lf | ||
*.idl text encoding=utf-8 eol=lf | ||
*.[ch] text encoding=utf-8 eol=lf | ||
*.[ch]pp text encoding=utf-8 eol=lf | ||
*.xaml text encoding=utf-8 eol=lf | ||
app.manifest text encoding=utf-8 eol=lf | ||
|
||
# Files normalized to always keep Windows line endings | ||
*.sln text encoding=utf-8-bom eol=crlf | ||
*.vcxproj text encoding=utf-8 eol=crlf | ||
*.vcxproj.filters text encoding=utf-8 eol=crlf | ||
*.wapproj text encoding=utf-8 eol=crlf | ||
*.wapproj.users text encoding=utf-8 eol=crlf | ||
packages.config text encoding=utf-8-bom eol=crlf | ||
Package.appxmanifest text encoding=utf-8-bom eol=crlf |
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,151 @@ | ||
## Ignore Visual Studio temporary files, build results, and | ||
## files generated by popular Visual Studio add-ons. | ||
## | ||
## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore | ||
|
||
# User-specific files | ||
*.rsuser | ||
*.suo | ||
*.user | ||
*.userosscache | ||
*.sln.docstates | ||
|
||
# User-specific files (MonoDevelop/Xamarin Studio) | ||
*.userprefs | ||
|
||
# Build results | ||
[Dd]ebug/ | ||
[Dd]ebugPublic/ | ||
[Rr]elease/ | ||
[Rr]eleases/ | ||
x64/ | ||
x86/ | ||
[Ww][Ii][Nn]32/ | ||
[Aa][Rr][Mm]/ | ||
[Aa][Rr][Mm]64/ | ||
bld/ | ||
[Bb]in/ | ||
[Oo]bj/ | ||
[Ll]og/ | ||
[Ll]ogs/ | ||
|
||
# Visual Studio 2015/2017 cache/options directory | ||
.vs/ | ||
|
||
# Visual Studio 2017 auto generated files | ||
Generated\ Files/ | ||
|
||
# Build Results of an ATL Project | ||
[Dd]ebugPS/ | ||
[Rr]eleasePS/ | ||
dlldata.c | ||
|
||
# StyleCop | ||
StyleCopReport.xml | ||
|
||
# Files built by Visual Studio | ||
*_i.c | ||
*_p.c | ||
*_h.h | ||
*.ilk | ||
*.meta | ||
*.obj | ||
*.iobj | ||
*.pch | ||
*.pdb | ||
*.ipdb | ||
*.pgc | ||
*.pgd | ||
*.rsp | ||
*.sbr | ||
*.tlb | ||
*.tli | ||
*.tlh | ||
*.tmp | ||
*.tmp_proj | ||
*_wpftmp.csproj | ||
*.log | ||
*.tlog | ||
*.vspscc | ||
*.vssscc | ||
.builds | ||
*.pidb | ||
*.svclog | ||
*.scc | ||
|
||
# Visual C++ cache files | ||
ipch/ | ||
*.aps | ||
*.ncb | ||
*.opendb | ||
*.opensdf | ||
*.sdf | ||
*.cachefile | ||
*.VC.db | ||
*.VC.VC.opendb | ||
|
||
# Visual Studio profiler | ||
*.psess | ||
*.vsp | ||
*.vspx | ||
*.sap | ||
|
||
# Visual Studio Trace Files | ||
*.e2e | ||
|
||
# Visual Studio code coverage results | ||
*.coverage | ||
*.coveragexml | ||
|
||
# NuGet Packages | ||
*.nupkg | ||
# NuGet Symbol Packages | ||
*.snupkg | ||
# The packages folder can be ignored because of Package Restore | ||
**/[Pp]ackages/* | ||
# except build/, which is used as an MSBuild target. | ||
!**/[Pp]ackages/build/ | ||
# Uncomment if necessary however generally it will be regenerated when needed | ||
#!**/[Pp]ackages/repositories.config | ||
# NuGet v3's project.json files produces more ignorable files | ||
*.nuget.props | ||
*.nuget.targets | ||
|
||
# Windows Store app package directories and files | ||
AppPackages/ | ||
BundleArtifacts/ | ||
Package.StoreAssociation.xml | ||
_pkginfo.txt | ||
*.appx | ||
*.appxbundle | ||
*.appxupload | ||
|
||
# Visual Studio cache files | ||
# files ending in .cache can be ignored | ||
*.[Cc]ache | ||
# but keep track of directories ending in .cache | ||
!?*.[Cc]ache/ | ||
|
||
# Others | ||
ClientBin/ | ||
~$* | ||
*~ | ||
*.dbmdl | ||
*.dbproj.schemaview | ||
*.jfm | ||
*.pfx | ||
*.publishsettings | ||
orleans.codegen.cs | ||
|
||
# Cake - Uncomment if you are using it | ||
# tools/** | ||
# !tools/packages.config | ||
|
||
# MSBuild Binary and Structured Log | ||
*.binlog | ||
|
||
# Local History for Visual Studio | ||
.localhistory/ | ||
|
||
# Visual Studio History (VSHistory) files | ||
.vshistory/ |
Oops, something went wrong.