Skip to content

Commit

Permalink
chore: Address Review
Browse files Browse the repository at this point in the history
  • Loading branch information
Takoooooo committed Dec 17, 2024
1 parent 6d898eb commit 4704c76
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion UnoCheck/CheckCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ public override async Task<int> ExecuteAsync(CommandContext context, CheckSettin
settings.TargetPlatforms = ParseTfmsToTargetPlatforms(settings);
if (!string.IsNullOrEmpty(settings.Ide))
{
var currentSkips = settings.Skip == null ? [] : settings.Skip.ToList();
var currentSkips = settings.Skip?.ToList() ?? [];

switch (settings.Ide.ToLowerInvariant())
{
case "rider":
Expand Down

0 comments on commit 4704c76

Please sign in to comment.