Whitelist class names starting with I

Fixes clang issues being detected in interface classes such as `class IJob`

Fixes the following clangd error:

``Invalid case style for class 'IJob' (fix available)``
This commit is contained in:
ChillerDragon 2024-05-21 11:05:39 +08:00
parent 42fa41092c
commit ab64d64fed

View file

@ -116,7 +116,7 @@ CheckOptions:
- key: readability-identifier-naming.StructIgnoredRegexp
value: '^([CS]|MapObject$|EnvelopedQuad$).*'
- key: readability-identifier-naming.ClassIgnoredRegexp
value: '^(CCommandProcessorFragment_Vulkan$).*'
value: '^(I|CCommandProcessorFragment_Vulkan$).*'
- key: readability-identifier-naming.ParameterCase
value: CamelCase
- key: readability-identifier-naming.ParameterIgnoredRegexp