mirror of
https://github.com/facebookincubator/mvfst.git
synced 2025-04-18 17:24:03 +03:00
Summary: As title. Reviewed By: hanidamlaj Differential Revision: D59132399 fbshipit-source-id: e49483ca9bd77b9c73098e375e1dda52eb9bad35
19 lines
604 B
YAML
19 lines
604 B
YAML
# 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 -list-checks`
|
|
# NOTE: Please don't disable inheritance from the parent to make sure that common checks get propagated.
|
|
---
|
|
InheritParentConfig: true
|
|
Checks: '
|
|
boost-*,
|
|
bugprone-*,
|
|
clang-analyzer-*,
|
|
modernize-*,
|
|
performance-*,
|
|
-modernize-use-trailing-return-type,
|
|
cppcoreguidelines-pro-type-member-init,
|
|
cppcoreguidelines-init-variables,
|
|
'
|
|
...
|