Deshim VirtualExecutor in folly
[hiphop-php.git] / hphp / .clang-tidy
blob9e3256b674b502cf0977ba091bdf86c6dd1c54f2
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-InlinedStaticLocalVariableWarning,
12 -facebook-hte-LocalUncheckedArrayBounds,
13 -facebook-hte-MemberUncheckedArrayBounds,
14 -facebook-hte-MissingBraces,
15 -facebook-hte-NullableDereference,
16 -facebook-hte-NullableReturn,
17 -facebook-hte-ParameterUncheckedArrayBounds,
18 -facebook-hte-BadImplicitCast,
19 -facebook-reserve,
20 -readability-braces-around-statements,
22 ...