# Checks that will be implemented in future PRs:
# performance-unnecessary-value-param, hints to ~110 issues. Be careful with implementing the suggested changes of this one, as auto-fixes may break the code

FormatStyle: file

Checks: "
  -*,
  google-*,
  -google-runtime-int,
  -google-runtime-references,
  -google-build-using-namespace,
  -google-readability-avoid-underscore-in-googletest-name,
  modernize*,
  -modernize-pass-by-value,
  -modernize-use-trailing-return-type,
  -modernize-avoid-c-arrays,
  clang-analyzer-*,
  -clang-analyzer-deadcode.DeadStores,
  bugprone-*,
  -bugprone-narrowing-conversions,
  cert-*,
  -cert-err58-cpp,
  -cert-msc32-c,
  -cert-msc51-cpp,
  portability-*,
  readability-*,
  -readability-magic-numbers,
  -readability-qualified-auto,
  -readability-identifier-naming,
  performance-*
  "

WarningsAsErrors: "
  -*,
  google-*,
  -google-runtime-int,
  -google-runtime-references,
  -google-build-using-namespace,
  -google-readability-avoid-underscore-in-googletest-name,
  modernize*,
  -modernize-pass-by-value,
  -modernize-use-trailing-return-type,
  -modernize-avoid-c-arrays,
  clang-analyzer-*,
  bugprone-*,
  -bugprone-narrowing-conversions,
  portability-*,
  performance-*
  "

HeaderFilterRegex: "benchmarks/*.hp?p?"

CheckOptions:
  - key: google-readability-braces-around-statements.ShortStatementLines
    value: "3"
  - key: readability-identifier-length.IgnoredVariableNames
    value: "^[_n]$"
