# 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,
  clang-analyzer-*,
  bugprone-*,
  -bugprone-narrowing-conversions,
  cert-*,
  -cert-err58-cpp,
  portability-*,
  readability-*,
  -readability-magic-numbers,
  -readability-qualified-auto,
  performance-*
  "

WarningsAsErrors: "
  -*,
  google-*,
  -google-runtime-int,
  -google-runtime-references,
  -google-build-using-namespace,
  -google-readability-avoid-underscore-in-googletest-name,
  clang-analyzer-*,
  bugprone-*,
  -bugprone-narrowing-conversions,
  portability-*,
  readability-*,
  -readability-magic-numbers,
  -readability-qualified-auto,
  performance-*
  "

HeaderFilterRegex: "*test.*cpp"

CheckOptions:
  - key: google-readability-braces-around-statements.ShortStatementLines
    value: "3"
