diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2025-01-27 01:20:19 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2025-01-27 01:33:00 +0100 |
commit | 2a26c1506192468be6c4cd06465bee861d87db51 (patch) | |
tree | 9ae5fc333e61c2478dfc57842daeacbf1dc78867 /.clang-tidy | |
parent | 3f62112e3a1b180a9b931d6f43b3cdc74e7ba3b9 (diff) | |
download | cpp-utils-2a26c1506192468be6c4cd06465bee861d87db51.tar.gz cpp-utils-2a26c1506192468be6c4cd06465bee861d87db51.zip |
Diffstat (limited to '.clang-tidy')
-rw-r--r-- | .clang-tidy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.clang-tidy b/.clang-tidy index 49c1de0..d3ff68b 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -54,7 +54,7 @@ CheckOptions: - { key: readability-identifier-naming.EnumConstantPrefix, value: k } - { key: readability-identifier-naming.ConstantCase, value: CamelCase } - { key: readability-identifier-naming.ConstantPrefix, value: k } - - { key: readability-identifier-naming.ConstantIgnoredRegexp, value: is_.*_v } + - { key: readability-identifier-naming.ConstantIgnoredRegexp, value: is_.*_v|m_.* } - { key: readability-identifier-naming.FunctionCase, value: lower_case } - { key: readability-identifier-naming.ParameterCase, value: lower_case } |