[clang-tools-extra] [clang-tidy][readability-identifier-length] refactoring and cleanup (PR #194610)
Victor Chernyakin via cfe-commits
cfe-commits at lists.llvm.org
Tue Apr 28 09:26:41 PDT 2026
================
@@ -4,9 +4,9 @@ readability-identifier-length
=============================
This check finds variables and function parameters whose length are too short.
-The desired name length is configurable.
-
-Special cases are supported for loop counters and for exception variable names.
+The desired name length is configurable. Special short names which should be
+ignored can be specified. Local variables with short names can also be ignored
+if they are short-lived. This check offers no automated fix.
----------------
localspook wrote:
This is unnecessary IMO, no fix-it is implied.
```suggestion
if they are short-lived.
```
https://github.com/llvm/llvm-project/pull/194610
More information about the cfe-commits
mailing list