summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.clang-tidy11
1 files changed, 7 insertions, 4 deletions
diff --git a/.clang-tidy b/.clang-tidy
index a8040be0..bf138c62 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -1,19 +1,19 @@
# Here is an explanation for why some of the checks are disabled:
-# bugprone-easily-swappable-parameters: This check would require significant
+# bugprone-easily-swappable-parameters: This check would require significant
# refactoring effort.
-# bugprone-unchecked-optional-access: Too many false positives. For example,
+# bugprone-unchecked-optional-access: Too many false positives. For example,
# an explicit comparison with std::nullopt isn't considered a check.
-# cppcoreguidelines-avoid-const-or-ref-data-members: We believe, ref data
+# cppcoreguidelines-avoid-const-or-ref-data-members: We believe, ref data
# members are a good way to express ownership, and const data members improve
# readability.
# cppcoreguidelines-rvalue-reference-param-not-moved: Too many false positives,
# especially with partial moves from STL containers.
-# misc-const-correctness: Too many false positives, especially with STL
+# misc-const-correctness: Too many false positives, especially with STL
# containers.
# misc-include-cleaner: There is no way for symbol mapping. For example, this
@@ -32,6 +32,9 @@
# performance-avoid-endl: There are too many legitimate uses of std::endl for
# us.
+# readability-function-cognitive-complexity: This check would get triggered by
+# most uses of the catch2 test library.
+
# readability-identifier-length: We would like to enable this check, but it
# would require significant refactoring effort.