Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
epinter committed Aug 7, 2024
0 parents commit dfc3493
Show file tree
Hide file tree
Showing 57 changed files with 3,697 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .clang-format
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
IndentAccessModifiers: true
AccessModifierOffset: 0
BasedOnStyle: Google
ColumnLimit: 140
IndentWidth: 4
NamespaceIndentation: All
TabWidth: 4
UseTab: Never
AllowAllArgumentsOnNextLine: false
PackConstructorInitializers: NextLineOnly
AllowShortBlocksOnASingleLine: Empty
AllowShortCaseLabelsOnASingleLine: false
AllowShortFunctionsOnASingleLine: Empty
AllowShortIfStatementsOnASingleLine: Never
AllowShortLoopsOnASingleLine: false
SortIncludes: false
PointerAlignment: Right
ReferenceAlignment: Right
ReflowComments: false
SpaceAfterCStyleCast: true
SpaceAfterLogicalNot: false
SpaceBeforeRangeBasedForLoopColon: false
SpaceInEmptyParentheses: false
22 changes: 22 additions & 0 deletions .clang-tidy
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Checks: '-modernize-use-trailing-return-type,
-bugprone-easily-swappable-parameters,
readability-identifier-naming
'
FormatStyle: file
CheckOptions:
- key: readability-identifier-naming.EnumCase
value: 'CamelCase'
- key: readability-identifier-naming.EnumConstantCase
value: 'UPPER_CASE'
- key: readability-identifier-naming.ClassCase
value: 'CamelCase'
- key: readability-identifier-naming.FunctionCase
value: 'camelBack'
- key: readability-identifier-naming.GlobalFunctionCase
value: 'aNy_CasE'
- key: readability-identifier-naming.ClassMemberCase
value: 'camelBack'
- key: readability-identifier-naming.MemberCase
value: 'camelBack'
- key: readability-identifier-naming.ClassMethodCase
value: 'camelBack'
14 changes: 14 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
* text=auto
*.c text
*.h text
*.cpp text
*.hpp text
*.cc text
*.txt text
*.sln text eol=crlf
*.csproj text eol=crlf
*.csproj.user text eol=crlf
*.editorconfig text eol=crlf
app.config text eol=crlf
packages.config text eol=crlf
*.cs text
Loading

0 comments on commit dfc3493

Please # to comment.