---
Checks: >
    clang-diagnostic-*,
    clang-analyzer-*,
    readability-*,
    modernize-*,
    bugprone-*,
    misc-*,
    google-runtime-int,
    fuchsia-restrict-system-includes,
    -misc-unused-parameters,
    -misc-include-cleaner,
    -llvm-header-guard,
    -clang-analyzer-valist.Uninitialized,
    -clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,
    -clang-analyzer-security.insecureAPI.rand,
    -clang-analyzer-alpha.*,
    -modernize-macro-to-enum,
    -readability-magic-numbers,
    -readability-braces-around-statements,
    -readability-function-cognitive-complexity,
    -readability-identifier-length,
    -readability-isolate-declaration,
    -readability-suspicious-call-argument,
    -readability-avoid-nested-conditional-operator,
    -bugprone-easily-swappable-parameters,
    -bugprone-narrowing-conversions,
    -bugprone-reserved-identifier,
    -bugprone-switch-missing-default-case,
    -bugprone-inc-dec-in-conditions,
    -bugprone-multi-level-implicit-pointer-conversion,

WarningsAsErrors: '*'
HeaderFilterRegex: '.*(?<!lookup3.c)$'
FormatStyle: 'file'
CheckOptions:
  - key:             readability-braces-around-statements.ShortStatementLines
    value:           '1'
  - key:             google-runtime-int.TypeSufix
    value:           '_t'
  - key:             fuchsia-restrict-system-includes.Includes
    value:           '*,-stdint.h,-stdbool.h'
  - key:             readability-function-size.StatementThreshold
    value:           '950'
...
