cppnamelint
cppnamelint copied to clipboard
Unexpected report when using ClassName=UpperCamel
I am using release v0.3.4 on Windows 10, following is my cppnamelint.toml:
...
ClassName = 1 # 0: Default (UpperCamel)
# 1: UpperCamel
...
Either I set this value to 0 or 1, it will wrongly report that my class name violates the rule, following is the formatted result.json:
{
"Column": 1,
"Expected": "",
"Line": 46,
"TargetName": "XxxxXxxx",
"Type": 5,
"TypeName": "class"
}
@keineahnung2345 glad to receive your feedback. I am planning to archive this project because the major feature of this project had been merged into clang-tidy (https://github.com/llvm/llvm-project/commit/2b9b5bc0).
@dougpuob Oh, it's a good news.