Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
mmader87 committed Sep 13, 2024
1 parent 423bd9d commit c259b93
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions .clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,17 @@ IndentWidth: '4'
IndentWrappedFunctionNames: 'true'
KeepEmptyLinesAtTheStartOfBlocks: 'false'
Language: Cpp
PointerAlignment: Right
SortIncludes: 'true'
PointerAlignment: Left
ReferenceAlignment: Left
QualifierAlignment: Custom
QualifierOrder: ['inline', 'static', 'volatile', 'type', 'const', 'constexpr' ]
SortIncludes: CaseSensitive
SortUsingDeclarations: 'true'
SpaceAfterCStyleCast: 'false'
SpaceAfterLogicalNot: 'false'
SpaceAfterTemplateKeyword: 'false'
SpaceBeforeAssignmentOperators: 'true'
SpaceBeforeCpp11BracedList: 'true'
SpaceBeforeCpp11BracedList: 'false'
SpaceBeforeCtorInitializerColon: 'true'
SpaceBeforeInheritanceColon: 'true'
SpaceBeforeParens: Never
Expand All @@ -53,6 +56,7 @@ SpacesInCStyleCastParentheses: 'false'
SpacesInContainerLiterals: 'true'
SpacesInParentheses: 'true'
SpacesInSquareBrackets: 'true'
SpaceBeforeSquareBrackets: 'false'
TabWidth: '4'
UseTab: Never

Expand Down
2 changes: 1 addition & 1 deletion .clang-tidy
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Checks: '-*, bugprone-*, clang-analyzer-*, cppcoreguidelines-*, google-explicit-constructor, misc-*, modernize-*, performance-*, readability-* -clang-diagnostic-pragma-once-outside-header'
Checks: '-*, bugprone-*, clang-analyzer-*, cppcoreguidelines-*, google-explicit-constructor, misc-*, modernize-*, performance-*, readability-*, -modernize-use-trailing-return-type, -cppcoreguidelines-non-private-member-variables-in-classes, -misc-non-private-member-variables-in-classes, -cppcoreguidelines-avoid-non-const-global-variables, -readability-identifier-length, -bugprone-easily-swappable-parameters'

0 comments on commit c259b93

Please sign in to comment.