1
0
mirror of https://github.com/facebookincubator/mvfst.git synced 2025-04-18 17:24:03 +03:00
mvfst/quic/.clang-tidy
Joseph Beshay be0f07160a Add the linter rule for uninitialized variable
Summary: As title.

Reviewed By: hanidamlaj

Differential Revision: D59132399

fbshipit-source-id: e49483ca9bd77b9c73098e375e1dda52eb9bad35
2024-06-27 17:08:42 -07:00

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,
'
...