Update some 2015 sources to .clang-tidy

This commit is contained in:
2021-12-02 19:57:58 +00:00
parent 7ab7ecb00a
commit 9ecc3ff53d
27 changed files with 305 additions and 336 deletions

View File

@@ -8,65 +8,69 @@
# misc-no-recursion: We do not mind recursion (and we need to recurse)
# readability-function-cognitive-complexity: Too many asserts trigger this one unnecessarily
# cppcoreguidelines-pro-bounds-array-to-pointer-decay: Triggers on assert()
Checks: >-
*,
-abseil-*,
-altera-*,
-android-*,
-fuchsia-*,
-hicpp-*,
-llvmlibc-*,
-objc-*,
-zircon-*,
-cppcoreguidelines-owning-memory,
-cppcoreguidelines-pro-type-vararg,
-google-runtime-references,
-llvm-header-guard,
-misc-no-recursion,
-readability-function-cognitive-complexity,
-clang-diagnostic-ignored-optimization-argument,
-cppcoreguidelines-pro-bounds-array-to-pointer-decay
Checks: >-
*,
-abseil-*,
-altera-*,
-android-*,
-fuchsia-*,
-hicpp-*,
-llvmlibc-*,
-objc-*,
-zircon-*,
-cppcoreguidelines-owning-memory,
-cppcoreguidelines-pro-type-vararg,
-google-runtime-references,
-llvm-header-guard,
-misc-no-recursion,
-readability-function-cognitive-complexity,
-clang-diagnostic-ignored-optimization-argument,
-cppcoreguidelines-pro-bounds-array-to-pointer-decay,
-readability-identifier-length,
-cppcoreguidelines-avoid-magic-numbers,
-readability-magic-numbers,
-misc-non-private-member-variables-in-classes
WarningsAsErrors: '*,-clang-diagnostic-ignored-optimization-argument'
HeaderFilterRegex: ''
AnalyzeTemporaryDtors: false
FormatStyle: file
User: mgrettondann
FormatStyle: file
User: mgrettondann
CheckOptions:
- key: llvm-else-after-return.WarnOnConditionVariables
value: '0'
- key: modernize-loop-convert.MinConfidence
value: reasonable
- key: modernize-replace-auto-ptr.IncludeStyle
value: llvm
- key: cert-str34-c.DiagnoseSignedUnsignedCharComparisons
value: '0'
- key: google-readability-namespace-comments.ShortNamespaceLines
value: '10'
- key: cert-oop54-cpp.WarnOnlyIfThisHasSuspiciousField
value: '0'
- key: cppcoreguidelines-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic
value: '1'
- key: cert-dcl16-c.NewSuffixes
value: 'L;LL;LU;LLU'
- key: google-readability-braces-around-statements.ShortStatementLines
value: '1'
- key: modernize-pass-by-value.IncludeStyle
value: llvm
- key: google-readability-namespace-comments.SpacesBeforeComments
value: '2'
- key: modernize-loop-convert.MaxCopySize
value: '16'
- key: cppcoreguidelines-explicit-virtual-functions.IgnoreDestructors
value: '1'
- key: modernize-use-nullptr.NullMacros
value: 'NULL'
- key: llvm-qualified-auto.AddConstToQualified
value: '0'
- key: modernize-loop-convert.NamingStyle
value: CamelCase
- key: llvm-else-after-return.WarnOnUnfixable
value: '0'
- key: google-readability-function-size.StatementThreshold
value: '800'
- key: llvm-else-after-return.WarnOnConditionVariables
value: '0'
- key: modernize-loop-convert.MinConfidence
value: reasonable
- key: modernize-replace-auto-ptr.IncludeStyle
value: llvm
- key: cert-str34-c.DiagnoseSignedUnsignedCharComparisons
value: '0'
- key: google-readability-namespace-comments.ShortNamespaceLines
value: '10'
- key: cert-oop54-cpp.WarnOnlyIfThisHasSuspiciousField
value: '0'
- key: cppcoreguidelines-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic
value: '1'
- key: cert-dcl16-c.NewSuffixes
value: 'L;LL;LU;LLU'
- key: google-readability-braces-around-statements.ShortStatementLines
value: '1'
- key: modernize-pass-by-value.IncludeStyle
value: llvm
- key: google-readability-namespace-comments.SpacesBeforeComments
value: '2'
- key: modernize-loop-convert.MaxCopySize
value: '16'
- key: cppcoreguidelines-explicit-virtual-functions.IgnoreDestructors
value: '1'
- key: modernize-use-nullptr.NullMacros
value: 'NULL'
- key: llvm-qualified-auto.AddConstToQualified
value: '0'
- key: modernize-loop-convert.NamingStyle
value: CamelCase
- key: llvm-else-after-return.WarnOnUnfixable
value: '0'
- key: google-readability-function-size.StatementThreshold
value: '800'
...