deps: upgrade StyleCop, fix warnings

...fixes new array initializer expression
This commit is contained in:
goat 2024-06-07 21:19:16 +02:00
parent 02022599e5
commit 31e541fae5
17 changed files with 307 additions and 286 deletions

View file

@ -34,7 +34,7 @@ public interface IConsoleCommand : IConsoleEntry
/// <summary>
/// Interface representing a variable in the console.
/// </summary>
/// <typeparam name="T">The type of the variable</typeparam>
/// <typeparam name="T">The type of the variable.</typeparam>
public interface IConsoleVariable<T> : IConsoleEntry
{
/// <summary>

View file

@ -9,6 +9,8 @@ using Dalamud.Plugin.Services;
namespace Dalamud.Console;
#pragma warning disable Dalamud001
/// <summary>
/// Plugin-scoped version of the console service.
/// </summary>