summaryrefslogtreecommitdiff
path: root/.clang-tidy
diff options
context:
space:
mode:
authorEd Tanous <edtanous@google.com>2022-01-25 20:56:04 +0300
committerEd Tanous <ed@tanous.net>2022-02-07 19:41:37 +0300
commit104f09c95af2b3068e7afd655e4cebcad2bf0617 (patch)
tree87ed9227d3214a52de4620b24821989393d2efe5 /.clang-tidy
parent50b8a43af501412f93a93ccce34a9ea7abb6d57f (diff)
downloadbmcweb-104f09c95af2b3068e7afd655e4cebcad2bf0617.tar.xz
Enable readability-named-parameter checks
We don't have too many violations here, probably because we don't have many optional parameters. Fix the existing instances, and enable the check. Signed-off-by: Ed Tanous <edtanous@google.com> Change-Id: I4d512f0ec90b060fb60a42fe3cd6ba72fb6c6bcb
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy1
1 files changed, 1 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy
index 516ffefadf..ffb6b06fe2 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -273,6 +273,7 @@ readability-container-size-empty,
readability-delete-null-pointer,
readability-deleted-default,
readability-else-after-return,
+readability-named-parameter,
readability-identifier-naming'
WarningsAsErrors: '*'