mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-12 19:18:20 +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
|
- key: readability-identifier-naming.StructIgnoredRegexp
|
||||||
value: '^([CS]|MapObject$|EnvelopedQuad$).*'
|
value: '^([CS]|MapObject$|EnvelopedQuad$).*'
|
||||||
- key: readability-identifier-naming.ClassIgnoredRegexp
|
- key: readability-identifier-naming.ClassIgnoredRegexp
|
||||||
value: '^(CCommandProcessorFragment_Vulkan$).*'
|
value: '^(I|CCommandProcessorFragment_Vulkan$).*'
|
||||||
- key: readability-identifier-naming.ParameterCase
|
- key: readability-identifier-naming.ParameterCase
|
||||||
value: CamelCase
|
value: CamelCase
|
||||||
- key: readability-identifier-naming.ParameterIgnoredRegexp
|
- key: readability-identifier-naming.ParameterIgnoredRegexp
|
||||||
|
|
Loading…
Reference in a new issue