.clang-tidy 408 B

1234567
  1. # optin.core.unix.Malloc: disabled so we can use __attribute__((cleanup)) without leak complaints
  2. # optin.core.EnumCastOutOfRange: disabled because we use a lot of "wrong" enum values for testing
  3. # and internally and don't want those values leak into the public API
  4. Checks: >
  5. -clang-analyzer-unix.Malloc,
  6. -clang-analyzer-optin.core.EnumCastOutOfRange
  7. WarningsAsErrors: '*'