summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/.clang-tidy3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/.clang-tidy b/src/.clang-tidy
index 24abab63..a778a65d 100644
--- a/src/.clang-tidy
+++ b/src/.clang-tidy
@@ -29,7 +29,8 @@ CheckOptions:
- key: readability-identifier-naming.MemberPrefix
value: m
- key: readability-identifier-naming.MemberIgnoredRegexp
- value: ^_(.*)
+ # Allow names that end with _[dsma] (for AI parameter variables)
+ value: (^_(.*)|m(.*)(_[dsma]))
# Public class/struct members
- key: readability-identifier-naming.PublicMemberCase