# 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-readability-namespace-comments,
  llvm-include-order,
  modernize*,
  hicpp-*,
  -hicpp-use-equals-default,
  -hicpp-explicit-conversions,
  clang-analyzer-*,
  bugprone-*,
  -bugprone-narrowing-conversions,
  misc-*,
  cppcoreguidelines-*,
  -cppcoreguidelines-narrowing-conversions,
  -cppcoreguidelines-avoid-magic-numbers,
  -cppcoreguidelines-special-member-functions,
  -cppcoreguidelines-macro-usage,
  -cppcoreguidelines-pro-bounds-pointer-arithmetic,
  -cppcoreguidelines-pro-bounds-constant-array-index,
  cert-*,
  -cert-err58-cpp,
  portability-*,
  readability-*,
  -readability-magic-numbers,
  performance-*
  "

WarningsAsErrors: "
  -*,
  google-*,
  -google-runtime-int,
  -google-runtime-references,
  -google-readability-namespace-comments,
  llvm-include-order,
  modernize*,
  hicpp-*,
  -hicpp-use-equals-default,
  -hicpp-explicit-conversions,
  clang-analyzer-*,
  bugprone-*,
  -bugprone-narrowing-conversions,
  misc-*,
  cppcoreguidelines-*,
  -cppcoreguidelines-narrowing-conversions,
  -cppcoreguidelines-avoid-magic-numbers,
  -cppcoreguidelines-special-member-functions,
  -cppcoreguidelines-macro-usage,
  -cppcoreguidelines-pro-bounds-pointer-arithmetic,
  -cppcoreguidelines-pro-bounds-constant-array-index,
  portability-*,
  readability-*,
  -readability-magic-numbers,
  performance-*
  "

HeaderFilterRegex: ".*hpp"

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