sapling/eden/.clang-tidy

15 lines
615 B
Plaintext
Raw Normal View History

# NOTE there must be no spaces before the '-', so put the comma after.
# When making changes, be sure to verify the output of the following command to ensure
# the desired checks are enabled (run from the directory containing a .clang-tidy file):
# `clang-tidy -- --dump-config`
# NOTE: Please don't disable inheritance from the parent to make sure that common checks get propagated.
---
InheritParentConfig: true
Checks: '
facebook-hte-PortabilityInclude-gflags/gflags.h,
facebook-hte-PortabilityInclude-gmock/gmock.h,
facebook-hte-PortabilityInclude-gtest/gtest.h,
-facebook-hte-ContextDependentStaticInit,
'
...