mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
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:
parent
42fa41092c
commit
ab64d64fed
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue