swh:1:snp:af87cd67498ef4fe47c76ed3e7caffe5b61facaf
Raw File
Tip revision: 6c9118fb23c981c28a53dc215c68f2be00c04e3e authored by Jonas Rembser on 12 April 2024, 19:22:15 UTC
[RF] Enable `roofit_multiprocess` on the CI
Tip revision: 6c9118f
.clang-tidy
---
Checks: -*,
  ,boost-use-to-string,
  ,bugprone-string-constructor,
  ,cppcoreguidelines-prefer-member-initializer,
  ,misc-definitions-in-headers,
  ,misc-string-compare,
  ,misc-uniqueptr-reset-release,
  ,modernize-deprecated-headers,
  ,modernize-make-shared,
  ,modernize-make-unique,
  ,modernize-use-bool-literals,
  ,modernize-use-equals-delete,
  ,modernize-use-nullptr,
  ,modernize-use-override,
  ,performance-faster-string-find,
  ,performance-inefficient-algorithm,
  ,performance-inefficient-vector-operation,
  ,performance-move-const-arg,
  ,performance-trivially-destructible,
  ,readability-braces-around-statements,
  ,readability-container-size-empty,
  ,readability-duplicate-include,
  ,readability-isolate-declaration,
  ,readability-redundant-member-init,
  ,readability-redundant-smartptr-get,
  ,readability-redundant-string-cstr,
  ,readability-redundant-string-init,
  ,readability-static-definition-in-anonymous-namespace,
  ,readability-string-compare,
  ,readability-uniqueptr-delete-release
WarningsAsErrors: '*'
HeaderFilterRegex: ''
AnalyzeTemporaryDtors: false
CheckOptions:
  - key:             google-readability-braces-around-statements.ShortStatementLines
    value:           '1'
  - key:             google-readability-function-size.StatementThreshold
    value:           '800'
  - key:             google-readability-namespace-comments.ShortNamespaceLines
    value:           '10'
  - key:             google-readability-namespace-comments.SpacesBeforeComments
    value:           '2'
  - key:             misc-definitions-in-headers.HeaderFileExtensions
    value:           'h,hh,hpp,hxx,icc'
  - key:             modernize-loop-convert.MaxCopySize
    value:           '16'
  - key:             modernize-loop-convert.MinConfidence
    value:           reasonable
  - key:             modernize-loop-convert.NamingStyle
    value:           CamelCase
  - key:             modernize-pass-by-value.IncludeStyle
    value:           llvm
  - key:             modernize-replace-auto-ptr.IncludeStyle
    value:           llvm
  - key:             modernize-use-nullptr.NullMacros
    value:           'NULL'
  - key:             readability-braces-around-statements.ShortStatementLines
    value:           '2'
  - key:             readability-redundant-member-init.IgnoreBaseInCopyConstructors
    value:           true
...

back to top