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" } ```