Blame .clang-tidy

5e458b
---
5e458b
Checks:          '*,readability-*,-google-runtime-references,-modernize-use-trailing-return-type,-hicpp-signed-bitwise,-fuchsia*,-modernize-use-nodiscard'
5e458b
WarningsAsErrors: ''
5e458b
HeaderFilterRegex: ''
5e458b
AnalyzeTemporaryDtors: false
5e458b
FormatStyle:     none
5e458b
CheckOptions:
5e458b
  - key:             readability-identifier-naming.ClassCase
5e458b
    value:           CamelCase
5e458b
  - key:             readability-identifier-naming.FunctionCase
5e458b
    value:           lower_case
5e458b
  - key:             readability-identifier-naming.GlobalConstantCase
5e458b
    value:           UPPER_CASE
5e458b
  - key:             readability-identifier-naming.NamespaceCase
5e458b
    value:           lower_case
5e458b
  - key:             readability-identifier-naming.ParameterCase
5e458b
    value:           lower_case
5e458b
  - key:             readability-identifier-naming.StructCase
5e458b
    value:           CamelCase
5e458b
  - key:             readability-identifier-naming.VariableCase
5e458b
    value:           lower_case
5e458b
5e458b
  - key:             readability-implicit-bool-conversion.AllowIntegerConditions
5e458b
    value:           '0'
5e458b
  - key:             readability-implicit-bool-conversion.AllowPointerConditions
5e458b
    value:           '1'
5e458b
  - key:             readability-inconsistent-declaration-parameter-name.IgnoreMacros
5e458b
    value:           '1'
5e458b
  - key:             readability-inconsistent-declaration-parameter-name.Strict
5e458b
    value:           '1'
5e458b
...