mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-19 18:47:55 +08:00
fix#根据反馈调整Qodana 忽略特定的警告 (#5867)
忽略的警告类型是额外的逗号,如下:
```csharp
"zh-tw" => new[] { "zh-cn", _culture, },
"en-us" => new[] { "zh-cn", _culture, },
_ => new[] { "zh-cn", "en-us", _culture, }, //<- 尾部的逗号
};
```
```csharp
{ "en-us", "YoStarEN" },
{ "ja-jp", "YoStarJP" },
{ "ko-kr", "YoStarKR" }, // <- 尾部的逗号
};
```
This commit is contained in:
@@ -27,3 +27,5 @@ exclude:
|
||||
- name: CppUnreachableCode
|
||||
- name: CppUnusedIncludeDirective
|
||||
- name: Xaml.RedundantNamespaceAlias
|
||||
- name: ArrangeTrailingCommaInMultilineLists
|
||||
- name: ArrangeTrailingCommaInSinglelineLists
|
||||
|
||||
Reference in New Issue
Block a user