aboutsummaryrefslogtreecommitdiff
path: root/libc/.clang-tidy
diff options
context:
space:
mode:
authorNick Desaulniers <nickdesaulniers@users.noreply.github.com>2024-02-28 14:52:02 -0800
committerGitHub <noreply@github.com>2024-02-28 14:52:02 -0800
commit6f8d826b746242802a2368cac26896dfebd6f5a1 (patch)
tree999fd09398e5aa06292c2e97520a0bfc697a652d /libc/.clang-tidy
parentfc8d48106387b8b79531902788ef93571f924da7 (diff)
downloadllvm-6f8d826b746242802a2368cac26896dfebd6f5a1.zip
llvm-6f8d826b746242802a2368cac26896dfebd6f5a1.tar.gz
llvm-6f8d826b746242802a2368cac26896dfebd6f5a1.tar.bz2
[libc] fix readability-identifier-naming.ConstexprFunctionCase (#83345)
Codify that we use lower_case for readability-identifier-naming.ConstexprFunctionCase and then fix the 11 violations (rather than codify UPPER_CASE and have to fix the 170 violations).
Diffstat (limited to 'libc/.clang-tidy')
-rw-r--r--libc/.clang-tidy2
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/.clang-tidy b/libc/.clang-tidy
index 5adada9..dbde889 100644
--- a/libc/.clang-tidy
+++ b/libc/.clang-tidy
@@ -26,5 +26,7 @@ CheckOptions:
value: UPPER_CASE
- key: readability-identifier-naming.ConstexprVariableCase
value: UPPER_CASE
+ - key: readability-identifier-naming.ConstexprFunctionCase
+ value: lower_case
- key: readability-identifier-naming.GetConfigPerFile
value: true