Introduce runif check for locale, use it to convert skipifs.
[hiphop-php.git] / hphp / .clang-tidy
blob21e5e51f41a49911ff17129c18f288848cd5dc2e
1 # NOTE there must be no spaces before the '-', so put the comma after.
2 # When making changes, be sure to verify the output of the following command to ensure
3 # the desired checks are enabled (run from the directory containing a .clang-tidy file):
4 # `clang-tidy -list-checks`
5 # NOTE: Please don't disable inheritance from the parent to make sure that common checks get propagated.
6 ---
7 InheritParentConfig: true
8 Checks: '
9 -facebook-hte-FormatPointlessCall_Fmt,
10 -facebook-hte-FormatPointlessCall_Folly,
11 facebook-hte-HPHPCapturingVout,
12 -facebook-hte-InlinedStaticLocalVariableWarning,
13 -facebook-hte-LocalUncheckedArrayBounds,
14 -facebook-hte-MemberUncheckedArrayBounds,
15 -facebook-hte-MissingBraces,
16 -facebook-hte-NullableDereference,
17 -facebook-hte-NullableReturn,
18 -facebook-hte-ParameterUncheckedArrayBounds,
19 -facebook-hte-BadImplicitCast
21 ...