Skip to content

Commit

Permalink
chore(clang-tidy): add explanations for disabled checks
Browse files Browse the repository at this point in the history
Signed-off-by: Max SCHMELLER <[email protected]>
  • Loading branch information
mojomex committed Nov 20, 2024
1 parent 180b922 commit 9781011
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .clang-tidy
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# All disabled checks have to come with an explanatory comment that states why they were disabled!
#
# modernize-use-trailing-return-type:
# Purely stylistic, makes function signature longer
#
# readability-identifier-length:
# Things like std::ostream os; nlohmann::json j; are popular. Reviewer can decide on those cases
#
# readability-implicit-bool-conversion:
# Makes packet-parsing (bool field that occupies a byte or bitfield) annoying
#
# hicpp-special-member-functions:
# Alias for cppcoreguidelines-special-member-functions, which is enabled. If both are enabled,
# the CheckOptions below have to be specified twice.
Checks: "
*,
-abseil-*,
Expand Down

0 comments on commit 9781011

Please sign in to comment.